mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-11-13 20:02:19 +00:00
13 lines
212 B
TypeScript
13 lines
212 B
TypeScript
namespace MisskeyEntity {
|
|
export type Choice = {
|
|
text: string
|
|
votes: number
|
|
isVoted: boolean
|
|
}
|
|
|
|
export type Poll = {
|
|
multiple: boolean
|
|
expiresAt: string
|
|
choices: Array<Choice>
|
|
}
|
|
}
|