hrms-admin/src/modules/05_command/interface/index/Main.ts
waruneeauy 4f48bd4141 Merge branch 'develop' of github.com:Frappet/bma-ehr-admin into develop
# Conflicts:
#	src/modules/05_command/interface/index/Main.ts
2024-09-12 16:42:41 +07:00

40 lines
536 B
TypeScript

interface Pagination {
rowsPerPage: number;
}
interface DateOption {
name: string;
id: string;
}
interface ActiveOptions {
value: boolean;
label: string;
}
interface ListOrder {
id: string;
commandCode: string;
name: string;
status: boolean;
category?: string;
}
interface ListTemplateSalary {
id: number | null;
name: string;
status?: boolean;
}
interface Tabs {
value: string;
label: string;
}
export type {
Pagination,
DateOption,
ActiveOptions,
ListOrder,
Tabs,
ListTemplateSalary,
};