mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-15 13:25:44 +01:00
13 lines
258 B
TypeScript
13 lines
258 B
TypeScript
/// <reference path="poll_option.ts" />
|
|
|
|
namespace PleromaEntity {
|
|
export type Poll = {
|
|
id: string
|
|
expires_at: string | null
|
|
expired: boolean
|
|
multiple: boolean
|
|
votes_count: number
|
|
options: Array<PollOption>
|
|
voted: boolean
|
|
}
|
|
}
|