hrms-admin/src/modules/05_command/interface/index/Main.ts

41 lines
536 B
TypeScript
Raw Normal View History

interface Pagination {
rowsPerPage: number;
}
interface DateOption {
name: string;
id: string;
}
interface ActiveOptions {
2024-09-11 18:06:04 +07:00
value: boolean;
label: string;
}
interface ListOrder {
id: string;
2024-09-09 13:56:29 +07:00
commandCode: string;
name: string;
status: boolean;
2024-09-09 13:56:29 +07:00
category?: string;
}
2024-09-12 16:41:05 +07:00
interface ListTemplateSalary {
id: number | null;
name: string;
status?: boolean;
}
interface Tabs {
value: string;
label: string;
}
export type {
Pagination,
DateOption,
ActiveOptions,
ListOrder,
Tabs,
ListTemplateSalary,
};