layui/.svn/pristine/41/41ab49fe700c908e51f90255b01421a1120f9910.svn-base
2022-12-09 16:41:41 +08:00

17 lines
381 B
Plaintext

export type SelectValueType = string | string[] | number | number[] | null;
export interface SelectItem {
value?: SelectValueType;
label?: null | string | string[];
disabled?: boolean;
multiple?: boolean;
}
export interface SelectItemHandle {
(selectItem: SelectItem, isChecked?: boolean): void;
}
export interface SelectItemPush {
(selectItem: SelectItem): void;
}