UNPKG

@cainiaofe/cn-ui-m

Version:
11 lines (10 loc) 274 B
/// <reference types="react" /> export type ICheckboxDataSource = Array<{ label?: string; text?: string; value?: any; disabled?: boolean; checked?: boolean; style?: React.CSSProperties; children?: ICheckboxDataSource[]; }> | string[] | number[];