iceshrimp-legacy/packages/megalodon/lib/src/entities/poll.d.ts

13 lines
293 B
TypeScript

/// <reference path="poll_option.d.ts" />
declare namespace Entity {
type Poll = {
id: string;
expires_at: string | null;
expired: boolean;
multiple: boolean;
votes_count: number;
options: Array<PollOption>;
voted: boolean;
};
}