UNPKG

megalodon

Version:

Fediverse API client for node.js and browser

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