import { VTimezone } from "@/types";

export const fictiveTimezone: VTimezone = {
  id: "Fictive/Timezone",
  props: [
    {
      type: "DAYLIGHT",
      start: new Date(1997, 3, 30, 2),
      name: "(DST)",
      offsetFrom: "+0100",
      offsetTo: "+0200",
    },
    {
      type: "STANDARD",
      start: new Date(1997, 10, 26, 3),
      name: "(DST)",
      offsetFrom: "+0200",
      offsetTo: "+0100",
    },
  ],
};
