antd-mobile
Version:
基于 React 的移动设计规范实现
19 lines (18 loc) • 565 B
TypeScript
import { CascaderValue } from 'rmc-cascader/lib/CascaderTypes';
import { IPopupPickerProps } from 'rmc-picker/lib/PopupPickerTypes';
interface Props extends IPopupPickerProps {
data: any;
cascade?: boolean;
value?: Array<string | number>;
format?: (values) => void;
cols?: number;
extra?: string;
children?: any;
onChange?: (date?: CascaderValue) => void;
itemStyle?: any;
/** web only */
pickerPrefixCls?: string;
popupPrefixCls?: string;
onPickerChange?: (value: CascaderValue) => void;
}
export default Props;