UNPKG

scheunemann-interfaces

Version:
13 lines (12 loc) 400 B
import { EDocType, IAddress } from '../../general'; import { ICustomerData } from '../interfaces/i-customer-data'; export declare class CustomerDataEntity implements ICustomerData { address: IAddress | null; doc: string; docType: EDocType; name: string; internationalCode: string; phoneNumber: string; email: string; constructor(data?: Partial<CustomerDataEntity>); }