Sharkey/packages/megalodon/src/entities/poll_option.ts
2023-09-25 01:49:57 +02:00

6 lines
103 B
TypeScript

namespace Entity {
export type PollOption = {
title: string
votes_count: number | null
}
}