aboutsummaryrefslogtreecommitdiff
path: root/src/Interfaces
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-09-13 17:40:13 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-09-13 17:40:13 +0530
commit794b16479649b1a7d4eac6f7c5f5bda7f97ee406 (patch)
tree4884d0583ddf59a19e15314f31287dbf1ba6cfa1 /src/Interfaces
parentc1600045a243e3547fe589bfc7e474d2decaea4c (diff)
Added dummy objects to use as place holdersHEADmain
Diffstat (limited to 'src/Interfaces')
-rw-r--r--src/Interfaces/dummies.ts38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/Interfaces/dummies.ts b/src/Interfaces/dummies.ts
new file mode 100644
index 0000000..2d7c713
--- /dev/null
+++ b/src/Interfaces/dummies.ts
@@ -0,0 +1,38 @@
+import { Item, NewItem, Address } from "./interfaces"
+
+export const DummyItem: Item = {
+ Model: "",
+ Description: "",
+ Quantity: 0,
+ UnitPrice: 0,
+ TotalValue: 0,
+ Discount: 0,
+ DiscountValue: 0,
+ HSN: "",
+ TotalGST: 0,
+ SGST: 0,
+ CGST: 0,
+ IGST: 0,
+ TotalGSTValue: 0,
+ Brand: "",
+ Category: ""
+}
+
+export const DummyNewItem: NewItem = {
+ Model: "",
+ Description: "",
+ UnitPrice: 0,
+ HSN: "",
+ TotalGST: 0,
+ Brand: "",
+ Category: ""
+}
+
+export const DummyAddress: Address = {
+ AddressLine: "",
+ City: "",
+ State: "",
+ PINCode: "",
+ Country: ""
+}
+