refactor: edit type

This commit is contained in:
Net 2024-09-12 14:22:45 +07:00
parent 0ddda9cd35
commit f30455e0e4

View file

@ -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;