mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-23 17:54:52 +00:00
6 lines
112 B
TypeScript
6 lines
112 B
TypeScript
namespace FriendicaEntity {
|
|
export type PollOption = {
|
|
title: string
|
|
votes_count: number | null
|
|
}
|
|
}
|