You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Accepts any valid timezone. List of available [timezones is here](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) (column "TZ database name").',
nonEmpty: true,
trim: true,
// @ts-ignore
validate: value => timezones.includes(value)
});
export { timezones, Timezone, timezoneOptions } from "./timezones";