2023-11-17 09:51:35 +08:00

6 lines
92 B
TypeScript

export interface Option {
text: string;
value: string | number;
icon: string;
}