fix: แก้ type ของ image File | null;

This commit is contained in:
Net 2024-06-10 16:02:47 +07:00
parent 8e248152c8
commit fd8087a5c5

View file

@ -92,7 +92,7 @@ export type CustomerCreate = {
customerName: string; customerName: string;
customerType: CustomerType; customerType: CustomerType;
status?: Status; status?: Status;
image: File; image: File | null;
}; };
export type CustomerUpdate = { export type CustomerUpdate = {