mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-12-17 20:34:26 +00:00
6 lines
111 B
TypeScript
6 lines
111 B
TypeScript
namespace MastodonEntity {
|
|
export type PollOption = {
|
|
title: string
|
|
votes_count: number | null
|
|
}
|
|
}
|