antd-mobile
Version:
基于 React 的移动设计规范实现
20 lines (19 loc) • 502 B
TypeScript
import * as React from 'react';
import tsPropsType from './PropsType';
export default class Picker extends React.Component<tsPropsType, any> {
static propTypes: {
format: React.Requireable<any>;
};
static defaultProps: {
format: (values: any) => any;
cols: number;
value: any[];
extra: string;
okText: string;
dismissText: string;
title: string;
styles: {};
};
getSel: () => void;
render(): JSX.Element;
}