UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

12 lines 302 B
/** Represent a city */ export interface City { /** Name of the city */ city: string; /** INSEE code of the city */ inseeCode: string; /** Locality (subset of a city) */ locality?: string; /** Zip code of the city */ zipCode: string; } //# sourceMappingURL=City.d.ts.map