mirror of
https://github.com/nullnyat/NullcatChan.git
synced 2025-04-28 22:27:17 +09:00
14 lines
200 B
TypeScript
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;
|
|
};
|