UNPKG

@simplyhomes/sos-client

Version:

Client SDK for SimplyHomes SOS API

12 lines (11 loc) 467 B
import { SDK_CountyModel } from 'sdk/models/county.model'; type SDK_GetCountyById_County_Type = InstanceType<typeof SDK_CountyModel>; type SDK_GetCountyById_County_PickType = Pick<SDK_GetCountyById_County_Type, 'cid' | 'name'>; export declare class SDK_GetCountyById_County implements SDK_GetCountyById_County_PickType { cid: string; name?: string; } export declare class SDK_GetCountyById_Response { county: SDK_GetCountyById_County | null; } export {};