server/types/entities/poll.ts

12 lines
214 B
TypeScript
Raw Normal View History

2023-09-11 05:31:08 +02:00
import { PollOption } from "./poll_option";
2023-09-11 05:46:20 +02:00
export interface Poll {
2023-09-11 05:31:08 +02:00
id: string;
expires_at: string | null;
expired: boolean;
multiple: boolean;
votes_count: number;
2023-09-11 05:46:20 +02:00
options: PollOption[];
2023-09-11 05:31:08 +02:00
voted: boolean;
2023-09-11 05:46:20 +02:00
}