antd-mobile
Version:
基于 React 的移动设计规范实现
17 lines (16 loc) • 430 B
TypeScript
interface Props {
data: any;
value?: Array<string | number>;
format?: (values) => void;
cols?: number;
extra?: string;
dismissText?: string | React.ReactElement<any>;
okText?: string | React.ReactElement<any>;
title?: string | React.ReactElement<any>;
children: any;
/** web only */
prefixCls?: string;
pickerPrefixCls?: string;
popupPrefixCls?: string;
}
export default Props;