aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces.ts
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-06-26 22:53:24 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-06-26 22:53:24 +0530
commit7f64269194103cc7436041b59676cd96e4a099a0 (patch)
treee871527c6a39b43269ac77ad593dfd43c6cea290 /src/interfaces.ts
parent0cf29dd48b7d59c731519527e26dda959b340664 (diff)
Ported SelectClientForm to TS
Diffstat (limited to 'src/interfaces.ts')
-rw-r--r--src/interfaces.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/interfaces.ts b/src/interfaces.ts
index e85ef29..49eee91 100644
--- a/src/interfaces.ts
+++ b/src/interfaces.ts
@@ -35,8 +35,9 @@ export interface NewItem {
}
export interface Person {
+ ID?: number
Name: string
Address: string
- Phone: string
- Email: string
+ Phone?: string
+ Email?: string
}