antd-mobile-rn
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
27 lines (26 loc) • 813 B
TypeScript
import PropTypes from 'prop-types';
import AbstractPicker from './AbstractPicker';
import { PickerPropsType } from './PropsType';
import { IPickerStyle } from './style/index.native';
export interface PickerNativeProps extends PickerPropsType {
styles?: IPickerStyle;
}
export default class Picker extends AbstractPicker {
static defaultProps: {
styles: {
[x: string]: import("react-native").RegisteredStyle<any>;
};
triggerType: string;
prefixCls: string;
pickerPrefixCls: string;
popupPrefixCls: string;
format: (values: string[]) => string;
cols: number;
cascade: boolean;
title: string;
};
static contextTypes: {
antLocale: PropTypes.Requireable<object>;
};
protected popupProps: {};
}