UNPKG

scheunemann-interfaces

Version:
11 lines (10 loc) 250 B
import { EDocType, IAddress } from '../../general'; export interface ICustomerData { address: IAddress | null; doc: string; docType: EDocType; name: string; internationalCode: string; phoneNumber: string; email: string; }