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
@@ -8,3 +8,10 @@ export interface Customer {
billingTerms: string, billingTerms: string,
notes: string, notes: string,
} }
export interface NewCustomer {
name: string,
company: string,
email: number,
phone: number,
address: string,
}
-10
View File
@@ -19,13 +19,3 @@ export interface NewItem {
rentalPrice: number, rentalPrice: number,
replacementCost: number, replacementCost: number,
} }
export interface Customer {
id: number,
name: string,
company: string,
email: string,
phone: string,
address: string,
billingTerms: string,
notes: string,
}