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

22 lines
315 B
TypeScript
Raw Normal View History

interface Pagination {
rowsPerPage: number;
}
interface ActiveOptions {
value: string;
label: string;
}
interface ListOrder {
id: string;
code: string;
name: string;
status: boolean;
}
interface Tabs {
value: string;
label: string;
}
export type { Pagination, ActiveOptions, ListOrder, Tabs };