UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

25 lines (24 loc) 585 B
/// <reference types="react" /> import React from 'react'; export interface IPickerView { prefixCls?: string; pickerPrefixCls?: string; cols?: number; cascade?: boolean; value?: any[]; data?: any; styles?: any; onChange?: (value?) => void; indicatorStyle?: any; } export default class Picker extends React.Component<IPickerView, any> { static defaultProps: { prefixCls: string; pickerPrefixCls: string; cols: number; cascade: boolean; value: never[]; onChange(): void; }; render(): any; }