UNPKG

scheunemann-interfaces

Version:
12 lines (11 loc) 257 B
import { ICoords } from './i-coords'; export interface IAddress { city: string; complement: string | null; neighborhood: string; postalCode: string; state: string; streetName: string; streetNumber: string; coords: ICoords; }