2023-01-29 17:39:28 +09:00

14 lines
200 B
TypeScript

export type Note = {
id: string;
text: string | null;
reply: any | null;
poll?: {
choices: {
votes: number;
text: string;
}[];
expiredAfter: number;
multiple: boolean;
} | null;
};