diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-26 22:53:24 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-26 22:53:24 +0530 |
commit | 7f64269194103cc7436041b59676cd96e4a099a0 (patch) | |
tree | e871527c6a39b43269ac77ad593dfd43c6cea290 /src/interfaces.ts | |
parent | 0cf29dd48b7d59c731519527e26dda959b340664 (diff) |
Ported SelectClientForm to TS
Diffstat (limited to 'src/interfaces.ts')
-rw-r--r-- | src/interfaces.ts | 5 |
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 } |