@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
15 lines (14 loc) • 394 B
TypeScript
import { StyleProp, ViewStyle } from "react-native";
export interface PickerCol {
key?: string;
props?: any;
}
interface MultiPickerProps {
selectedValue?: any[];
rootNativeProps?: any;
onValueChange?: (v?: any, i?: number) => void;
children?: any;
style?: StyleProp<ViewStyle>;
onScrollChange?: (v?: any, i?: number) => void;
}
export default MultiPickerProps;