Type alias Poll

Poll: {
    expired: boolean;
    expires_at: string | null;
    id: string;
    multiple: boolean;
    options: PollOption[];
    voted: boolean;
    votes_count: number;
}

Type declaration

  • expired: boolean
  • expires_at: string | null
  • id: string
  • multiple: boolean
  • options: PollOption[]
  • voted: boolean
  • votes_count: number

Generated using TypeDoc