server/types/mastodon/poll.ts

15 lines
270 B
TypeScript
Raw Normal View History

2024-04-14 12:53:21 +02:00
export type Poll = {
2024-04-07 07:30:49 +02:00
id: string;
expires_at: string | null;
expired: boolean;
multiple: boolean;
votes_count: number;
options: PollOption[];
2024-04-07 07:30:49 +02:00
voted: boolean;
2024-04-14 12:53:21 +02:00
};
export type PollOption = {
title: string;
votes_count: number | null;
};