From 5d2222d9fa782b94ba6787e5c6b23aab1e468308 Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Thu, 24 Jun 2021 20:00:10 +0530 Subject: Multiple minor bug fixes and convert more compnents to TS --- src/interfaces.ts | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) (limited to 'src/interfaces.ts') diff --git a/src/interfaces.ts b/src/interfaces.ts index 7090907..bc355ff 100644 --- a/src/interfaces.ts +++ b/src/interfaces.ts @@ -1,21 +1,23 @@ export interface Transport { - name: string, - vehicleNum: string, - method: string, - gstin: string, + name: string + vehicleNum: string + method: string + gstin: string builty: string } export interface Item { - Model: string, - Description: string, - Quantity: number, - UnitPrice: number, - TotalValue: number, // UnitPrice * Quantity - Discount: number, - HSN: number, // string?? + Model: string + Description: string + Quantity: number + UnitPrice: number + TotalValue: number // UnitPrice * Quantity + Discount: number + HSN: number // string?? - sgst: number, - cgst: number, - igst: number + TotalGST: number + SGST: number + CGST: number + IGST: number + // category and brand } -- cgit v1.2.3