UNPKG

scheunemann-interfaces

Version:
14 lines (13 loc) 391 B
import { IAddress } from '../interfaces'; import { CoordsEntity } from './coords.entity'; export declare class AddressEntity implements IAddress { city: string; complement: string | null; coords: CoordsEntity; neighborhood: string; postalCode: string; state: string; streetName: string; streetNumber: string; constructor(data?: Partial<AddressEntity>); }