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

23 lines
344 B
TypeScript
Raw Normal View History

interface Pagination {
rowsPerPage: number;
}
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;
}
interface Tabs {
value: string;
label: string;
}
export type { Pagination, ActiveOptions, ListOrder, Tabs };