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,
startDate: "1950-01-01 00:00:00",
endDate: "2050-12-31 23:59:59"
2025-07-21 16:47:04 +08:00
};