bunny-admin-element-thin/types/enum/options.d.ts

13 lines
228 B
TypeScript
Raw Normal View History

2024-09-04 14:59:06 +08:00
// 默认option选项
export interface Option {
value: string | number | boolean | undefined;
label: string | undefined;
}
// 属性结构
export interface TreeData {
value: string;
label: string;
children?: TreeData[];
}