UNPKG

artwork-react-native

Version:

artwork design master for react-native

25 lines (24 loc) 663 B
/// <reference types="react-native" /> import AbstractPicker from './AbstractPicker'; import { IPickerStyle } from './style'; import tsPropsType from './PropsType'; export interface IPickerNativeProps extends tsPropsType { styles?: IPickerStyle; } export default class Picker extends AbstractPicker { static defaultProps: { styles: { [x: string]: number & { __registeredStyleBrand: any; }; }; format: (values: any) => any; cols: number; cascade: boolean; title: string; }; static contextTypes: { antLocale: any; }; protected popupProps: {}; }