aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces.ts
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-06-26 02:58:04 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-06-26 02:58:04 +0530
commite59c4dee0ab213c2e1f93b494a09fcd3810d7f10 (patch)
tree18a327f2e2438331abb906c3e51b72f602203133 /src/interfaces.ts
parentc29507c2e32d5a3fe25c6fe3dbfba9700f93316e (diff)
Converted RegisterItemForm to TS and fix bugs, added more functionality to support the backend
Diffstat (limited to 'src/interfaces.ts')
-rw-r--r--src/interfaces.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/interfaces.ts b/src/interfaces.ts
index 04e7d51..1ace032 100644
--- a/src/interfaces.ts
+++ b/src/interfaces.ts
@@ -23,3 +23,10 @@ export interface Item {
TotalGSTValue: number // total tax
// category and brand
}
+
+export interface Person {
+ Name: string
+ Address: string
+ Phone: string
+ Email: string
+}