UNPKG

megalodon

Version:

Fediverse API client for node.js and browser

11 lines (10 loc) 184 B
export type Choice = { text: string; votes: number; isVoted?: boolean; }; export type Poll = { multiple: boolean; expiresAt: string; choices: Array<Choice>; };