2025-07-21 16:47:04 +08:00
|
|
|
type Config = {
|
|
|
|
|
zIndex: number;
|
2025-07-28 18:57:37 +08:00
|
|
|
startDate: string;
|
|
|
|
|
endDate: string;
|
2025-07-21 16:47:04 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const config: Config = {
|
2025-07-28 18:57:37 +08:00
|
|
|
zIndex: 600,
|
|
|
|
|
startDate: "1950-01-01 00:00:00",
|
|
|
|
|
endDate: "2050-12-31 23:59:59"
|
2025-07-21 16:47:04 +08:00
|
|
|
};
|