Merge branch 'develop' of https://github.com/Frappet/bma-ehr-frontend into develop

This commit is contained in:
watcharanondh 2023-06-14 17:47:30 +07:00
commit b8d0a5230c
11 changed files with 1997 additions and 326 deletions

View file

@ -2,6 +2,7 @@ import type { zipCodeOption } from "../../components/exams_other/profileType";
interface DataOption {
id: number | string;
name: string;
disable?: boolean;
}
interface Pagination {
@ -32,5 +33,10 @@ interface AddressOps {
}
interface treeTab {
id: string;
label: string;
children: treeTab[];
}
export type { DataOption, InformationOps , AddressOps, Pagination ,EduOps };
export type { DataOption, treeTab, InformationOps, AddressOps, Pagination, EduOps };