6 lines
86 B
TypeScript
Executable File
6 lines
86 B
TypeScript
Executable File
export interface Option {
|
|
text: string;
|
|
value: string | number;
|
|
icon: string;
|
|
}
|