3fd2b55406
This reverts commit 89eea5df52
.
7 lines
103 B
TypeScript
7 lines
103 B
TypeScript
namespace Entity {
|
|
export type PollOption = {
|
|
title: string
|
|
votes_count: number | null
|
|
}
|
|
}
|