diff options
Diffstat (limited to 'src/interfaces.ts')
-rw-r--r-- | src/interfaces.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/interfaces.ts b/src/interfaces.ts index b2f354c..8363752 100644 --- a/src/interfaces.ts +++ b/src/interfaces.ts @@ -21,7 +21,8 @@ export interface Item { CGST: number | boolean IGST: number | boolean TotalGSTValue: number // total tax - // category and brand + Brand: string + Category: string } // for registering new item to DB @@ -31,7 +32,8 @@ export interface NewItem { UnitPrice: number // price without tax/discount HSN: string TotalGST: number // gst percentage - // category and brand + Brand: string + Category: string } export interface Address { |