sharkey/packages/megalodon/src/misskey/entities/poll.ts

14 lines
212 B
TypeScript
Raw Normal View History

2023-09-24 01:49:47 +09:00
namespace MisskeyEntity {
2023-09-24 08:44:53 +09:00
export type Choice = {
text: string
votes: number
isVoted: boolean
}
2023-09-24 01:49:47 +09:00
2023-09-24 08:44:53 +09:00
export type Poll = {
multiple: boolean
expiresAt: string
choices: Array<Choice>
}
2023-09-24 01:49:47 +09:00
}