UNPKG

react-native-picker-modal-view

Version:
13 lines (12 loc) 411 B
/// <reference types="react" /> import { IModalListInDto } from './'; declare type ListType = IModalListInDto[]; export interface ISelectBoxProps { selectedObject?: IModalListInDto; openModal: () => void; chooseText: string; disabled?: boolean; renderSelectView?: (disabled: boolean, selected: IModalListInDto, showModal: () => void) => React.ReactElement; items: ListType; } export {};