megalodon/megalodon/src/mastodon/entities/poll_option.ts
2022-01-02 16:28:11 +09:00

7 lines
111 B
TypeScript

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