6 lines
103 B
TypeScript
6 lines
103 B
TypeScript
namespace Entity {
|
|
export type PollOption = {
|
|
title: string
|
|
votes_count: number | null
|
|
}
|
|
}
|