zmp-react
Version:
Build full featured iOS & Android apps using ZMP & React
28 lines (23 loc) • 610 B
TypeScript
import * as React from 'react';
interface PickerProps {
slot?: string;
placeholder?: string;
title?: string;
inputID?: string;
label?: label;
errorMessage ?: string;
errorMessageForce ?: boolean;
required ?: boolean;
info ?: string;
style?: React.CSSProperties;
data?: any[];
defaultSelect?: any[];
selected?: string;
actionText?: string;
onClickAction?: (...args: any[]) => void;
onChange?: (...args: any[]) => void;
onCancel?: (...args: any[]) => void;
children?: React.ReactNode;
}
declare const Picker: React.FunctionComponent<PickerProps>;
export default Picker;