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

14 lines
398 B
Plaintext

export declare 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;
}