added new customer type

This commit is contained in:
2026-07-17 12:12:54 -05:00
parent 3b07318e34
commit 854c55b7e0
2 changed files with 7 additions and 10 deletions
@@ -7,4 +7,11 @@ export interface Customer {
address: string,
billingTerms: string,
notes: string,
}
export interface NewCustomer {
name: string,
company: string,
email: number,
phone: number,
address: string,
}