fix: แก้ไข contact: BranchContact[];

This commit is contained in:
Net 2024-04-17 15:28:41 +07:00 committed by Methapon2001
parent 544b67c7f4
commit 2d0102eefb

View file

@ -1,4 +1,5 @@
import { District, Province, SubDistrict } from '../address';
import { BranchContact } from '../branch-contact/types';
import { Status } from '../types';
export type Branch = {
@ -28,6 +29,7 @@ export type Branch = {
taxNo: string;
id: string;
code: string;
contact: BranchContact[];
};
export type BranchWithChildren = Branch & { branch: Branch[] };