40 lines
536 B
TypeScript
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,
|
|
};
|