UNPKG

@tsclass/tsclass

Version:

Provides TypeScript definitions for various business, financial, networking, content, and other common classes.

18 lines (17 loc) 351 B
export interface IAddress { name?: string; streetName: string; houseNumber: string; postalCode: string; city: string; country: string; countryCode?: string; /** * allows storage of coordinates for this address * useful for countries where addresses are not unique */ coordinates?: { lat: number; lng: number; }; }