From 015673032bb15a5bb1c5e59a54b1cb8079dbcf38 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Wed, 10 Jul 2024 10:24:31 +0700 Subject: [PATCH] =?UTF-8?q?refactor:=20=E0=B9=80=E0=B8=9E=E0=B8=B4?= =?UTF-8?q?=E0=B9=88=E0=B8=A1=20type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/branch/types.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/stores/branch/types.ts b/src/stores/branch/types.ts index 4e231fd1..cafecaad 100644 --- a/src/stores/branch/types.ts +++ b/src/stores/branch/types.ts @@ -33,6 +33,9 @@ export type Branch = { telephoneNo: string; lineId: string; contact: BranchContact[]; + _count:{ + branch:number + } }; export type BranchWithChildren = Branch & { branch: Branch[] };