config.ts 191 B

1234567891011
  1. type Config = {
  2. zIndex: number;
  3. startDate: string;
  4. endDate: string;
  5. };
  6. export const config: Config = {
  7. zIndex: 600,
  8. startDate: "2000-01-01 00:00:00",
  9. endDate: "2050-12-31 23:59:59"
  10. };