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() } }