UNPKG

react-native-picker-modal-view

Version:
18 lines (14 loc) 263 B
export interface IModalListInDto<T = object> { Id: string | number; Name: string; Value: string | T; [key: string]: any; CountryId?: ICity; CityId?: ITown; } interface ICity { CountryId: string | number; } interface ITown { CityId?: string | number; }