2023-09-24 01:49:47 +09:00
|
|
|
/// <reference path="poll_option.ts" />
|
|
|
|
|
|
|
|
namespace Entity {
|
2023-09-25 08:49:57 +09:00
|
|
|
export type Poll = {
|
|
|
|
id: string
|
|
|
|
expires_at: string | null
|
|
|
|
expired: boolean
|
|
|
|
multiple: boolean
|
|
|
|
votes_count: number
|
|
|
|
options: Array<PollOption>
|
|
|
|
voted: boolean
|
2023-09-25 23:08:31 +09:00
|
|
|
emojis?: []
|
2023-09-26 06:56:47 +09:00
|
|
|
own_votes?: Array<number>
|
2023-09-25 08:49:57 +09:00
|
|
|
}
|
2023-09-24 01:49:47 +09:00
|
|
|
}
|