import Address from './address' export default class Customer { name: string gstin: string contactname: string phone: string email: string website: string billingaddress: Address constructor() { this.name = '' this.gstin = '' this.contactname = '' this.phone = '' this.email = '' this.website = '' this.billingaddress = new Address() } }