2022-07-11 23:35:50 +00:00
|
|
|
/* eslint-disable @calcom/eslint/deprecated-imports */
|
2022-06-28 20:40:58 +00:00
|
|
|
import dayjs from "dayjs";
|
|
|
|
import dayjsBusinessTime from "dayjs-business-days2";
|
|
|
|
import customParseFormat from "dayjs/plugin/customParseFormat";
|
|
|
|
import isBetween from "dayjs/plugin/isBetween";
|
|
|
|
import isToday from "dayjs/plugin/isToday";
|
|
|
|
import localizedFormat from "dayjs/plugin/localizedFormat";
|
2022-12-14 13:36:10 +00:00
|
|
|
import minmax from "dayjs/plugin/minMax";
|
2022-06-28 20:40:58 +00:00
|
|
|
import relativeTime from "dayjs/plugin/relativeTime";
|
|
|
|
import timeZone from "dayjs/plugin/timezone";
|
|
|
|
import toArray from "dayjs/plugin/toArray";
|
|
|
|
import utc from "dayjs/plugin/utc";
|
|
|
|
|
|
|
|
dayjs.extend(customParseFormat);
|
|
|
|
dayjs.extend(dayjsBusinessTime);
|
|
|
|
dayjs.extend(isBetween);
|
|
|
|
dayjs.extend(isToday);
|
|
|
|
dayjs.extend(localizedFormat);
|
|
|
|
dayjs.extend(relativeTime);
|
|
|
|
dayjs.extend(timeZone);
|
|
|
|
dayjs.extend(toArray);
|
|
|
|
dayjs.extend(utc);
|
2022-12-14 13:36:10 +00:00
|
|
|
dayjs.extend(minmax);
|
2022-06-28 20:40:58 +00:00
|
|
|
|
|
|
|
export type Dayjs = dayjs.Dayjs;
|
|
|
|
|
|
|
|
export type { ConfigType } from "dayjs";
|
|
|
|
|
|
|
|
export default dayjs;
|