初始化版本
This commit is contained in:
Vendored
+17
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* 弹窗类型
|
||||
*/
|
||||
export interface Dialog {
|
||||
title: string;
|
||||
visible: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* 通用组件选择项类型
|
||||
*/
|
||||
export interface Option {
|
||||
value: number;
|
||||
label: string;
|
||||
checked?: boolean;
|
||||
children?: Option[];
|
||||
}
|
||||
Reference in New Issue
Block a user