Files
WAI_Project_UNIX/uni_modules/cool-ui/config.ts

12 lines
191 B
TypeScript
Raw Normal View History

2025-07-21 16:47:04 +08:00
type Config = {
zIndex: number;
startDate: string;
endDate: string;
2025-07-21 16:47:04 +08:00
};
export const config: Config = {
zIndex: 600,
2025-08-06 18:14:11 +08:00
startDate: "2000-01-01 00:00:00",
endDate: "2050-12-31 23:59:59"
2025-07-21 16:47:04 +08:00
};