mistykey/packages/megalodon/src/mastodon/entities/poll_option.ts
2023-09-24 01:44:53 +02:00

6 lines
111 B
TypeScript

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