UNPKG

@cutls/megalodon

Version:

Mastodon, Pleroma, Misskey API client for node.js and browser

15 lines (14 loc) 307 B
export type Poll = { id: string; expires_at: string | null; expired: boolean; multiple: boolean; votes_count: number; voters_count: number | null; options: Array<PollOption>; voted: boolean; }; export type PollOption = { title: string; votes_count: number | null; };