UNPKG

react-native-picker-modal-view

Version:
16 lines (15 loc) 295 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; } export {};