7 lines
100 B
TypeScript
7 lines
100 B
TypeScript
namespace Entity {
|
|
export type PollOption = {
|
|
title: string;
|
|
votes_count: number | null;
|
|
};
|
|
}
|