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

6 lines
112 B
TypeScript

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