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

# Conflicts:
#	src/modules/05_command/interface/index/Main.ts
This commit is contained in:
Warunee Tamkoo 2024-09-12 16:42:41 +07:00
commit 4f48bd4141
2 changed files with 55 additions and 1 deletions

View file

@ -2,6 +2,11 @@ interface Pagination {
rowsPerPage: number;
}
interface DateOption {
name: string;
id: string;
}
interface ActiveOptions {
value: boolean;
label: string;
@ -25,4 +30,11 @@ interface Tabs {
value: string;
label: string;
}
export type { Pagination, ActiveOptions, ListOrder, Tabs, ListTemplateSalary };
export type {
Pagination,
DateOption,
ActiveOptions,
ListOrder,
Tabs,
ListTemplateSalary,
};