From 8c906c98b2a2994286731357831ca8005ef0d73f Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Sun, 8 Aug 2021 16:11:08 +0530 Subject: Added better support for saving client data --- src/interfaces.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'src/interfaces.ts') diff --git a/src/interfaces.ts b/src/interfaces.ts index 3500c2b..b2f354c 100644 --- a/src/interfaces.ts +++ b/src/interfaces.ts @@ -34,12 +34,22 @@ export interface NewItem { // category and brand } +export interface Address { + AddressLine: string + City: string + State: string + PINCode: string + Country: string +} + export interface Person { ID?: number Name: string - Address: string Phone?: string Email?: string + BillAddress: Address + ShipAddress?: Address + Address?: string // to be removed } export interface Invoice { -- cgit v1.2.3