fix: แก้ type

This commit is contained in:
Net 2024-06-18 15:40:52 +07:00
parent c65e2b535d
commit 87f0973186

View file

@ -52,15 +52,16 @@ type AdditionalType = 'string' | 'number' | 'boolean' | Date;
// Product
export interface ServiceById {
work: Work & { productOnWork: ProductOnWork[] }[];
work: (Work & { productOnWork: ProductOnWork[] })[];
updatedAt: string;
updateBy: string;
createdAt: string;
createdBy: string;
status: Status;
attributes: string;
attributes: Attributes;
detail: string;
name: string;
order: number;
code: string;
id: string;
imageUrl: 'string';
}