mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-04-29 18:16:58 +00:00
6 lines
103 B
TypeScript
6 lines
103 B
TypeScript
namespace Entity {
|
|
export type PollOption = {
|
|
title: string
|
|
votes_count: number | null
|
|
}
|
|
}
|