added customer type

This commit is contained in:
2026-07-16 14:21:27 -05:00
parent f11f13481b
commit 8289936d3f
+10
View File
@@ -19,3 +19,13 @@ export interface NewItem {
rentalPrice: number,
replacementCost: number,
}
export interface Customer {
id: number,
name: string,
company: string,
email: string,
phone: string,
address: string,
billingTerms: string,
notes: string,
}