From f30455e0e43e72fe58c0e52c93c52f3dfa11cbb4 Mon Sep 17 00:00:00 2001 From: Net Date: Thu, 12 Sep 2024 14:22:45 +0700 Subject: [PATCH] refactor: edit type --- src/stores/branch/types.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/stores/branch/types.ts b/src/stores/branch/types.ts index 4e264a92..c5ab94e8 100644 --- a/src/stores/branch/types.ts +++ b/src/stores/branch/types.ts @@ -16,6 +16,9 @@ export type BankBook = { }; export type Branch = { + permitExpireDate: Date; + permitIssueDate: Date; + permitNo: string; selectedImage?: string; subDistrict: SubDistrict | null; district: District | null; @@ -57,6 +60,9 @@ export type Branch = { export type BranchWithChildren = Branch & { branch: Branch[] }; export type BranchCreate = { + permitExpireDate: Date; + permitIssueDate: Date; + permitNo: string; selectedImage?: string; code?: string; taxNo: string;