Files
beautifier-web/src/types/common.d.ts
T
2026-04-02 16:03:32 +08:00

18 lines
235 B
TypeScript

/**
* 弹窗类型
*/
export interface Dialog {
title: string;
visible: boolean;
}
/**
* 通用组件选择项类型
*/
export interface Option {
value: number;
label: string;
checked?: boolean;
children?: Option[];
}