feat: add branch children type

This commit is contained in:
Methapon2001 2024-04-09 14:56:22 +07:00
parent 20ecd04859
commit 2b5e99ceae

View file

@ -29,6 +29,8 @@ export type Branch = {
code: string;
};
export type BranchWithChildren = Branch & { branch: Branch[] };
export type BranchCreate = {
taxNo: string;
nameEN: string;