2023-10-06 13:32:54 +07:00
|
|
|
interface DataOption {
|
2023-11-17 15:28:03 +07:00
|
|
|
id: string;
|
|
|
|
|
name: string;
|
2023-10-06 13:32:54 +07:00
|
|
|
}
|
2023-11-17 15:28:03 +07:00
|
|
|
interface DataOption2 {
|
|
|
|
|
id: number;
|
|
|
|
|
name: string;
|
|
|
|
|
}
|
2024-12-06 13:33:07 +07:00
|
|
|
|
|
|
|
|
interface DataDateWeeklyObject {
|
|
|
|
|
startDay: number;
|
|
|
|
|
endDay: number;
|
|
|
|
|
month: number;
|
|
|
|
|
year: number;
|
|
|
|
|
}
|
2023-12-01 14:29:21 +07:00
|
|
|
interface DataDateMonthObject {
|
|
|
|
|
month: number;
|
|
|
|
|
year: number;
|
|
|
|
|
}
|
2024-12-06 13:33:07 +07:00
|
|
|
export type {
|
|
|
|
|
DataOption,
|
|
|
|
|
DataOption2,
|
|
|
|
|
DataDateWeeklyObject,
|
|
|
|
|
DataDateMonthObject,
|
|
|
|
|
};
|