From 2a684790d21ed6a029f45906ad5f84d279e47698 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Thu, 20 Jun 2024 18:01:47 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E0=B9=81=E0=B8=81=E0=B9=89=20type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/product-service/types.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/stores/product-service/types.ts b/src/stores/product-service/types.ts index 06831bef..7fb5394c 100644 --- a/src/stores/product-service/types.ts +++ b/src/stores/product-service/types.ts @@ -77,6 +77,13 @@ export interface ProductOnWork { order: number; } +export interface WorkItems { + id: string; + name: string; + attributes: Attributes; + product: (ProductList & { nameEn: string })[]; +} + export interface ProductList { remark: string; updatedAt: string;