// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it.
// FP Interfaces
interface CurriedFn1 {
(a: A): R
}
interface CurriedFn2 {
(a: A): CurriedFn1
(a: A, b: B): R
}
interface CurriedFn3 {
(a: A): CurriedFn2
(a: A, b: B): CurriedFn1
(a: A, b: B, c: C): R
}
interface CurriedFn4 {
(a: A): CurriedFn3
(a: A, b: B): CurriedFn2
(a: A, b: B, c: C): CurriedFn1
(a: A, b: B, c: C, d: D): R
}
// Type Aliases
type Interval = {
start: Date | string | number,
end: Date | string | number
}
type Options = {
weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6,
additionalDigits?: 0 | 1 | 2,
locale?: Locale,
includeSeconds?: boolean,
addSuffix?: boolean,
unit?: 's' | 'm' | 'h' | 'd' | 'M' | 'Y',
roundingMethod?: 'floor' | 'ceil' | 'round'
}
type Locale = {
formatDistance: Function,
formatLong: Function,
formatRelative: Function,
localize: {
ordinalNumber: Function,
weekday: Function,
weekdays: Function,
month: Function,
months: Function,
timeOfDay: Function,
timesOfDay: Function
},
match: {
ordinalNumbers: Function,
ordinalNumber: Function,
weekdays: Function,
weekday: Function,
months: Function,
month: Function,
timesOfDay: Function,
timeOfDay: Function
},
formatters?: Object,
formattingTokensRegExp?: RegExp,
units?: Object,
parsers?: Object,
parsingTokensRegExp?: RegExp,
options?: {
weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6
}
}
// Regular Functions
declare module 'date-fns' {
function addDays (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace addDays {}
function addHours (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace addHours {}
function addISOYears (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace addISOYears {}
function addMilliseconds (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace addMilliseconds {}
function addMinutes (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace addMinutes {}
function addMonths (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace addMonths {}
function addQuarters (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace addQuarters {}
function addSeconds (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace addSeconds {}
function addWeeks (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace addWeeks {}
function addYears (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace addYears {}
function areIntervalsOverlapping (
intervalLeft: Interval,
intervalRight: Interval,
options?: Options
): boolean
namespace areIntervalsOverlapping {}
function closestIndexTo (
dateToCompare: Date | string | number,
datesArray: (Date | string | number)[],
options?: Options
): number
namespace closestIndexTo {}
function closestTo (
dateToCompare: Date | string | number,
datesArray: (Date | string | number)[],
options?: Options
): Date
namespace closestTo {}
function compareAsc (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace compareAsc {}
function compareDesc (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace compareDesc {}
function differenceInCalendarDays (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInCalendarDays {}
function differenceInCalendarISOWeeks (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInCalendarISOWeeks {}
function differenceInCalendarISOYears (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInCalendarISOYears {}
function differenceInCalendarMonths (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInCalendarMonths {}
function differenceInCalendarQuarters (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInCalendarQuarters {}
function differenceInCalendarWeeks (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInCalendarWeeks {}
function differenceInCalendarYears (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInCalendarYears {}
function differenceInDays (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInDays {}
function differenceInHours (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInHours {}
function differenceInISOYears (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInISOYears {}
function differenceInMilliseconds (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInMilliseconds {}
function differenceInMinutes (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInMinutes {}
function differenceInMonths (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInMonths {}
function differenceInQuarters (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInQuarters {}
function differenceInSeconds (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInSeconds {}
function differenceInWeeks (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInWeeks {}
function differenceInYears (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): number
namespace differenceInYears {}
function eachDayOfInterval (
interval: Interval,
options?: Options
): Date[]
namespace eachDayOfInterval {}
function endOfDay (
date: Date | string | number,
options?: Options
): Date
namespace endOfDay {}
function endOfHour (
date: Date | string | number,
options?: Options
): Date
namespace endOfHour {}
function endOfISOWeek (
date: Date | string | number,
options?: Options
): Date
namespace endOfISOWeek {}
function endOfISOYear (
date: Date | string | number,
options?: Options
): Date
namespace endOfISOYear {}
function endOfMinute (
date: Date | string | number,
options?: Options
): Date
namespace endOfMinute {}
function endOfMonth (
date: Date | string | number,
options?: Options
): Date
namespace endOfMonth {}
function endOfQuarter (
date: Date | string | number,
options?: Options
): Date
namespace endOfQuarter {}
function endOfSecond (
date: Date | string | number,
options?: Options
): Date
namespace endOfSecond {}
function endOfWeek (
date: Date | string | number,
options?: Options
): Date
namespace endOfWeek {}
function endOfYear (
date: Date | string | number,
options?: Options
): Date
namespace endOfYear {}
function format (
date: Date | string | number,
format: string,
options?: Options
): string
namespace format {}
function formatDistance (
date: Date | string | number,
baseDate: Date | string | number,
options?: Options
): string
namespace formatDistance {}
function formatDistanceStrict (
date: Date | string | number,
baseDate: Date | string | number,
options?: Options
): string
namespace formatDistanceStrict {}
function formatRelative (
date: Date | string | number,
baseDate: Date | string | number,
options?: Options
): string
namespace formatRelative {}
function getDate (
date: Date | string | number,
options?: Options
): number
namespace getDate {}
function getDay (
date: Date | string | number,
options?: Options
): number
namespace getDay {}
function getDayOfYear (
date: Date | string | number,
options?: Options
): number
namespace getDayOfYear {}
function getDaysInMonth (
date: Date | string | number,
options?: Options
): number
namespace getDaysInMonth {}
function getDaysInYear (
date: Date | string | number,
options?: Options
): number
namespace getDaysInYear {}
function getHours (
date: Date | string | number,
options?: Options
): number
namespace getHours {}
function getISODay (
date: Date | string | number,
options?: Options
): number
namespace getISODay {}
function getISOWeek (
date: Date | string | number,
options?: Options
): number
namespace getISOWeek {}
function getISOWeeksInYear (
date: Date | string | number,
options?: Options
): number
namespace getISOWeeksInYear {}
function getISOYear (
date: Date | string | number,
options?: Options
): number
namespace getISOYear {}
function getMilliseconds (
date: Date | string | number,
options?: Options
): number
namespace getMilliseconds {}
function getMinutes (
date: Date | string | number,
options?: Options
): number
namespace getMinutes {}
function getMonth (
date: Date | string | number,
options?: Options
): number
namespace getMonth {}
function getOverlappingDaysInIntervals (
intervalLeft: Interval,
intervalRight: Interval,
options?: Options
): number
namespace getOverlappingDaysInIntervals {}
function getQuarter (
date: Date | string | number,
options?: Options
): number
namespace getQuarter {}
function getSeconds (
date: Date | string | number,
options?: Options
): number
namespace getSeconds {}
function getTime (
date: Date | string | number,
options?: Options
): number
namespace getTime {}
function getYear (
date: Date | string | number,
options?: Options
): number
namespace getYear {}
function isAfter (
date: Date | string | number,
dateToCompare: Date | string | number,
options?: Options
): boolean
namespace isAfter {}
function isBefore (
date: Date | string | number,
dateToCompare: Date | string | number,
options?: Options
): boolean
namespace isBefore {}
function isEqual (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): boolean
namespace isEqual {}
function isFirstDayOfMonth (
date: Date | string | number,
options?: Options
): boolean
namespace isFirstDayOfMonth {}
function isFriday (
date: Date | string | number,
options?: Options
): boolean
namespace isFriday {}
function isLastDayOfMonth (
date: Date | string | number,
options?: Options
): boolean
namespace isLastDayOfMonth {}
function isLeapYear (
date: Date | string | number,
options?: Options
): boolean
namespace isLeapYear {}
function isMonday (
date: Date | string | number,
options?: Options
): boolean
namespace isMonday {}
function isSameDay (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): boolean
namespace isSameDay {}
function isSameHour (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): boolean
namespace isSameHour {}
function isSameISOWeek (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): boolean
namespace isSameISOWeek {}
function isSameISOYear (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): boolean
namespace isSameISOYear {}
function isSameMinute (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): boolean
namespace isSameMinute {}
function isSameMonth (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): boolean
namespace isSameMonth {}
function isSameQuarter (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): boolean
namespace isSameQuarter {}
function isSameSecond (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): boolean
namespace isSameSecond {}
function isSameWeek (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): boolean
namespace isSameWeek {}
function isSameYear (
dateLeft: Date | string | number,
dateRight: Date | string | number,
options?: Options
): boolean
namespace isSameYear {}
function isSaturday (
date: Date | string | number,
options?: Options
): boolean
namespace isSaturday {}
function isSunday (
date: Date | string | number,
options?: Options
): boolean
namespace isSunday {}
function isThursday (
date: Date | string | number,
options?: Options
): boolean
namespace isThursday {}
function isTuesday (
date: Date | string | number,
options?: Options
): boolean
namespace isTuesday {}
function isValid (
date: any,
options?: Options
): boolean
namespace isValid {}
function isWednesday (
date: Date | string | number,
options?: Options
): boolean
namespace isWednesday {}
function isWeekend (
date: Date | string | number,
options?: Options
): boolean
namespace isWeekend {}
function isWithinInterval (
date: Date | string | number,
interval: Interval,
options?: Options
): boolean
namespace isWithinInterval {}
function lastDayOfISOWeek (
date: Date | string | number,
options?: Options
): Date
namespace lastDayOfISOWeek {}
function lastDayOfISOYear (
date: Date | string | number,
options?: Options
): Date
namespace lastDayOfISOYear {}
function lastDayOfMonth (
date: Date | string | number,
options?: Options
): Date
namespace lastDayOfMonth {}
function lastDayOfQuarter (
date: Date | string | number,
options?: Options
): Date
namespace lastDayOfQuarter {}
function lastDayOfWeek (
date: Date | string | number,
options?: Options
): Date
namespace lastDayOfWeek {}
function lastDayOfYear (
date: Date | string | number,
options?: Options
): Date
namespace lastDayOfYear {}
function max (
datesArray: (Date | string | number)[],
options?: Options
): Date
namespace max {}
function min (
datesArray: (Date | string | number)[],
options?: Options
): Date
namespace min {}
function parse (
dateString: string,
formatString: string,
baseDate: Date | string | number,
options?: Options
): Date
namespace parse {}
function setDate (
date: Date | string | number,
dayOfMonth: number,
options?: Options
): Date
namespace setDate {}
function setDay (
date: Date | string | number,
day: number,
options?: Options
): Date
namespace setDay {}
function setDayOfYear (
date: Date | string | number,
dayOfYear: number,
options?: Options
): Date
namespace setDayOfYear {}
function setHours (
date: Date | string | number,
hours: number,
options?: Options
): Date
namespace setHours {}
function setISODay (
date: Date | string | number,
day: number,
options?: Options
): Date
namespace setISODay {}
function setISOWeek (
date: Date | string | number,
isoWeek: number,
options?: Options
): Date
namespace setISOWeek {}
function setISOYear (
date: Date | string | number,
isoYear: number,
options?: Options
): Date
namespace setISOYear {}
function setMilliseconds (
date: Date | string | number,
milliseconds: number,
options?: Options
): Date
namespace setMilliseconds {}
function setMinutes (
date: Date | string | number,
minutes: number,
options?: Options
): Date
namespace setMinutes {}
function setMonth (
date: Date | string | number,
month: number,
options?: Options
): Date
namespace setMonth {}
function setQuarter (
date: Date | string | number,
quarter: number,
options?: Options
): Date
namespace setQuarter {}
function setSeconds (
date: Date | string | number,
seconds: number,
options?: Options
): Date
namespace setSeconds {}
function setYear (
date: Date | string | number,
year: number,
options?: Options
): Date
namespace setYear {}
function startOfDay (
date: Date | string | number,
options?: Options
): Date
namespace startOfDay {}
function startOfHour (
date: Date | string | number,
options?: Options
): Date
namespace startOfHour {}
function startOfISOWeek (
date: Date | string | number,
options?: Options
): Date
namespace startOfISOWeek {}
function startOfISOYear (
date: Date | string | number,
options?: Options
): Date
namespace startOfISOYear {}
function startOfMinute (
date: Date | string | number,
options?: Options
): Date
namespace startOfMinute {}
function startOfMonth (
date: Date | string | number,
options?: Options
): Date
namespace startOfMonth {}
function startOfQuarter (
date: Date | string | number,
options?: Options
): Date
namespace startOfQuarter {}
function startOfSecond (
date: Date | string | number,
options?: Options
): Date
namespace startOfSecond {}
function startOfWeek (
date: Date | string | number,
options?: Options
): Date
namespace startOfWeek {}
function startOfYear (
date: Date | string | number,
options?: Options
): Date
namespace startOfYear {}
function subDays (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace subDays {}
function subHours (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace subHours {}
function subISOYears (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace subISOYears {}
function subMilliseconds (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace subMilliseconds {}
function subMinutes (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace subMinutes {}
function subMonths (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace subMonths {}
function subQuarters (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace subQuarters {}
function subSeconds (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace subSeconds {}
function subWeeks (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace subWeeks {}
function subYears (
date: Date | string | number,
amount: number,
options?: Options
): Date
namespace subYears {}
function toDate (
argument: any,
options?: Options
): Date
namespace toDate {}
}
declare module 'date-fns/addDays' {
import {addDays} from 'date-fns'
export = addDays
}
declare module 'date-fns/addHours' {
import {addHours} from 'date-fns'
export = addHours
}
declare module 'date-fns/addISOYears' {
import {addISOYears} from 'date-fns'
export = addISOYears
}
declare module 'date-fns/addMilliseconds' {
import {addMilliseconds} from 'date-fns'
export = addMilliseconds
}
declare module 'date-fns/addMinutes' {
import {addMinutes} from 'date-fns'
export = addMinutes
}
declare module 'date-fns/addMonths' {
import {addMonths} from 'date-fns'
export = addMonths
}
declare module 'date-fns/addQuarters' {
import {addQuarters} from 'date-fns'
export = addQuarters
}
declare module 'date-fns/addSeconds' {
import {addSeconds} from 'date-fns'
export = addSeconds
}
declare module 'date-fns/addWeeks' {
import {addWeeks} from 'date-fns'
export = addWeeks
}
declare module 'date-fns/addYears' {
import {addYears} from 'date-fns'
export = addYears
}
declare module 'date-fns/areIntervalsOverlapping' {
import {areIntervalsOverlapping} from 'date-fns'
export = areIntervalsOverlapping
}
declare module 'date-fns/closestIndexTo' {
import {closestIndexTo} from 'date-fns'
export = closestIndexTo
}
declare module 'date-fns/closestTo' {
import {closestTo} from 'date-fns'
export = closestTo
}
declare module 'date-fns/compareAsc' {
import {compareAsc} from 'date-fns'
export = compareAsc
}
declare module 'date-fns/compareDesc' {
import {compareDesc} from 'date-fns'
export = compareDesc
}
declare module 'date-fns/differenceInCalendarDays' {
import {differenceInCalendarDays} from 'date-fns'
export = differenceInCalendarDays
}
declare module 'date-fns/differenceInCalendarISOWeeks' {
import {differenceInCalendarISOWeeks} from 'date-fns'
export = differenceInCalendarISOWeeks
}
declare module 'date-fns/differenceInCalendarISOYears' {
import {differenceInCalendarISOYears} from 'date-fns'
export = differenceInCalendarISOYears
}
declare module 'date-fns/differenceInCalendarMonths' {
import {differenceInCalendarMonths} from 'date-fns'
export = differenceInCalendarMonths
}
declare module 'date-fns/differenceInCalendarQuarters' {
import {differenceInCalendarQuarters} from 'date-fns'
export = differenceInCalendarQuarters
}
declare module 'date-fns/differenceInCalendarWeeks' {
import {differenceInCalendarWeeks} from 'date-fns'
export = differenceInCalendarWeeks
}
declare module 'date-fns/differenceInCalendarYears' {
import {differenceInCalendarYears} from 'date-fns'
export = differenceInCalendarYears
}
declare module 'date-fns/differenceInDays' {
import {differenceInDays} from 'date-fns'
export = differenceInDays
}
declare module 'date-fns/differenceInHours' {
import {differenceInHours} from 'date-fns'
export = differenceInHours
}
declare module 'date-fns/differenceInISOYears' {
import {differenceInISOYears} from 'date-fns'
export = differenceInISOYears
}
declare module 'date-fns/differenceInMilliseconds' {
import {differenceInMilliseconds} from 'date-fns'
export = differenceInMilliseconds
}
declare module 'date-fns/differenceInMinutes' {
import {differenceInMinutes} from 'date-fns'
export = differenceInMinutes
}
declare module 'date-fns/differenceInMonths' {
import {differenceInMonths} from 'date-fns'
export = differenceInMonths
}
declare module 'date-fns/differenceInQuarters' {
import {differenceInQuarters} from 'date-fns'
export = differenceInQuarters
}
declare module 'date-fns/differenceInSeconds' {
import {differenceInSeconds} from 'date-fns'
export = differenceInSeconds
}
declare module 'date-fns/differenceInWeeks' {
import {differenceInWeeks} from 'date-fns'
export = differenceInWeeks
}
declare module 'date-fns/differenceInYears' {
import {differenceInYears} from 'date-fns'
export = differenceInYears
}
declare module 'date-fns/eachDayOfInterval' {
import {eachDayOfInterval} from 'date-fns'
export = eachDayOfInterval
}
declare module 'date-fns/endOfDay' {
import {endOfDay} from 'date-fns'
export = endOfDay
}
declare module 'date-fns/endOfHour' {
import {endOfHour} from 'date-fns'
export = endOfHour
}
declare module 'date-fns/endOfISOWeek' {
import {endOfISOWeek} from 'date-fns'
export = endOfISOWeek
}
declare module 'date-fns/endOfISOYear' {
import {endOfISOYear} from 'date-fns'
export = endOfISOYear
}
declare module 'date-fns/endOfMinute' {
import {endOfMinute} from 'date-fns'
export = endOfMinute
}
declare module 'date-fns/endOfMonth' {
import {endOfMonth} from 'date-fns'
export = endOfMonth
}
declare module 'date-fns/endOfQuarter' {
import {endOfQuarter} from 'date-fns'
export = endOfQuarter
}
declare module 'date-fns/endOfSecond' {
import {endOfSecond} from 'date-fns'
export = endOfSecond
}
declare module 'date-fns/endOfWeek' {
import {endOfWeek} from 'date-fns'
export = endOfWeek
}
declare module 'date-fns/endOfYear' {
import {endOfYear} from 'date-fns'
export = endOfYear
}
declare module 'date-fns/format' {
import {format} from 'date-fns'
export = format
}
declare module 'date-fns/formatDistance' {
import {formatDistance} from 'date-fns'
export = formatDistance
}
declare module 'date-fns/formatDistanceStrict' {
import {formatDistanceStrict} from 'date-fns'
export = formatDistanceStrict
}
declare module 'date-fns/formatRelative' {
import {formatRelative} from 'date-fns'
export = formatRelative
}
declare module 'date-fns/getDate' {
import {getDate} from 'date-fns'
export = getDate
}
declare module 'date-fns/getDay' {
import {getDay} from 'date-fns'
export = getDay
}
declare module 'date-fns/getDayOfYear' {
import {getDayOfYear} from 'date-fns'
export = getDayOfYear
}
declare module 'date-fns/getDaysInMonth' {
import {getDaysInMonth} from 'date-fns'
export = getDaysInMonth
}
declare module 'date-fns/getDaysInYear' {
import {getDaysInYear} from 'date-fns'
export = getDaysInYear
}
declare module 'date-fns/getHours' {
import {getHours} from 'date-fns'
export = getHours
}
declare module 'date-fns/getISODay' {
import {getISODay} from 'date-fns'
export = getISODay
}
declare module 'date-fns/getISOWeek' {
import {getISOWeek} from 'date-fns'
export = getISOWeek
}
declare module 'date-fns/getISOWeeksInYear' {
import {getISOWeeksInYear} from 'date-fns'
export = getISOWeeksInYear
}
declare module 'date-fns/getISOYear' {
import {getISOYear} from 'date-fns'
export = getISOYear
}
declare module 'date-fns/getMilliseconds' {
import {getMilliseconds} from 'date-fns'
export = getMilliseconds
}
declare module 'date-fns/getMinutes' {
import {getMinutes} from 'date-fns'
export = getMinutes
}
declare module 'date-fns/getMonth' {
import {getMonth} from 'date-fns'
export = getMonth
}
declare module 'date-fns/getOverlappingDaysInIntervals' {
import {getOverlappingDaysInIntervals} from 'date-fns'
export = getOverlappingDaysInIntervals
}
declare module 'date-fns/getQuarter' {
import {getQuarter} from 'date-fns'
export = getQuarter
}
declare module 'date-fns/getSeconds' {
import {getSeconds} from 'date-fns'
export = getSeconds
}
declare module 'date-fns/getTime' {
import {getTime} from 'date-fns'
export = getTime
}
declare module 'date-fns/getYear' {
import {getYear} from 'date-fns'
export = getYear
}
declare module 'date-fns/isAfter' {
import {isAfter} from 'date-fns'
export = isAfter
}
declare module 'date-fns/isBefore' {
import {isBefore} from 'date-fns'
export = isBefore
}
declare module 'date-fns/isEqual' {
import {isEqual} from 'date-fns'
export = isEqual
}
declare module 'date-fns/isFirstDayOfMonth' {
import {isFirstDayOfMonth} from 'date-fns'
export = isFirstDayOfMonth
}
declare module 'date-fns/isFriday' {
import {isFriday} from 'date-fns'
export = isFriday
}
declare module 'date-fns/isLastDayOfMonth' {
import {isLastDayOfMonth} from 'date-fns'
export = isLastDayOfMonth
}
declare module 'date-fns/isLeapYear' {
import {isLeapYear} from 'date-fns'
export = isLeapYear
}
declare module 'date-fns/isMonday' {
import {isMonday} from 'date-fns'
export = isMonday
}
declare module 'date-fns/isSameDay' {
import {isSameDay} from 'date-fns'
export = isSameDay
}
declare module 'date-fns/isSameHour' {
import {isSameHour} from 'date-fns'
export = isSameHour
}
declare module 'date-fns/isSameISOWeek' {
import {isSameISOWeek} from 'date-fns'
export = isSameISOWeek
}
declare module 'date-fns/isSameISOYear' {
import {isSameISOYear} from 'date-fns'
export = isSameISOYear
}
declare module 'date-fns/isSameMinute' {
import {isSameMinute} from 'date-fns'
export = isSameMinute
}
declare module 'date-fns/isSameMonth' {
import {isSameMonth} from 'date-fns'
export = isSameMonth
}
declare module 'date-fns/isSameQuarter' {
import {isSameQuarter} from 'date-fns'
export = isSameQuarter
}
declare module 'date-fns/isSameSecond' {
import {isSameSecond} from 'date-fns'
export = isSameSecond
}
declare module 'date-fns/isSameWeek' {
import {isSameWeek} from 'date-fns'
export = isSameWeek
}
declare module 'date-fns/isSameYear' {
import {isSameYear} from 'date-fns'
export = isSameYear
}
declare module 'date-fns/isSaturday' {
import {isSaturday} from 'date-fns'
export = isSaturday
}
declare module 'date-fns/isSunday' {
import {isSunday} from 'date-fns'
export = isSunday
}
declare module 'date-fns/isThursday' {
import {isThursday} from 'date-fns'
export = isThursday
}
declare module 'date-fns/isTuesday' {
import {isTuesday} from 'date-fns'
export = isTuesday
}
declare module 'date-fns/isValid' {
import {isValid} from 'date-fns'
export = isValid
}
declare module 'date-fns/isWednesday' {
import {isWednesday} from 'date-fns'
export = isWednesday
}
declare module 'date-fns/isWeekend' {
import {isWeekend} from 'date-fns'
export = isWeekend
}
declare module 'date-fns/isWithinInterval' {
import {isWithinInterval} from 'date-fns'
export = isWithinInterval
}
declare module 'date-fns/lastDayOfISOWeek' {
import {lastDayOfISOWeek} from 'date-fns'
export = lastDayOfISOWeek
}
declare module 'date-fns/lastDayOfISOYear' {
import {lastDayOfISOYear} from 'date-fns'
export = lastDayOfISOYear
}
declare module 'date-fns/lastDayOfMonth' {
import {lastDayOfMonth} from 'date-fns'
export = lastDayOfMonth
}
declare module 'date-fns/lastDayOfQuarter' {
import {lastDayOfQuarter} from 'date-fns'
export = lastDayOfQuarter
}
declare module 'date-fns/lastDayOfWeek' {
import {lastDayOfWeek} from 'date-fns'
export = lastDayOfWeek
}
declare module 'date-fns/lastDayOfYear' {
import {lastDayOfYear} from 'date-fns'
export = lastDayOfYear
}
declare module 'date-fns/max' {
import {max} from 'date-fns'
export = max
}
declare module 'date-fns/min' {
import {min} from 'date-fns'
export = min
}
declare module 'date-fns/parse' {
import {parse} from 'date-fns'
export = parse
}
declare module 'date-fns/setDate' {
import {setDate} from 'date-fns'
export = setDate
}
declare module 'date-fns/setDay' {
import {setDay} from 'date-fns'
export = setDay
}
declare module 'date-fns/setDayOfYear' {
import {setDayOfYear} from 'date-fns'
export = setDayOfYear
}
declare module 'date-fns/setHours' {
import {setHours} from 'date-fns'
export = setHours
}
declare module 'date-fns/setISODay' {
import {setISODay} from 'date-fns'
export = setISODay
}
declare module 'date-fns/setISOWeek' {
import {setISOWeek} from 'date-fns'
export = setISOWeek
}
declare module 'date-fns/setISOYear' {
import {setISOYear} from 'date-fns'
export = setISOYear
}
declare module 'date-fns/setMilliseconds' {
import {setMilliseconds} from 'date-fns'
export = setMilliseconds
}
declare module 'date-fns/setMinutes' {
import {setMinutes} from 'date-fns'
export = setMinutes
}
declare module 'date-fns/setMonth' {
import {setMonth} from 'date-fns'
export = setMonth
}
declare module 'date-fns/setQuarter' {
import {setQuarter} from 'date-fns'
export = setQuarter
}
declare module 'date-fns/setSeconds' {
import {setSeconds} from 'date-fns'
export = setSeconds
}
declare module 'date-fns/setYear' {
import {setYear} from 'date-fns'
export = setYear
}
declare module 'date-fns/startOfDay' {
import {startOfDay} from 'date-fns'
export = startOfDay
}
declare module 'date-fns/startOfHour' {
import {startOfHour} from 'date-fns'
export = startOfHour
}
declare module 'date-fns/startOfISOWeek' {
import {startOfISOWeek} from 'date-fns'
export = startOfISOWeek
}
declare module 'date-fns/startOfISOYear' {
import {startOfISOYear} from 'date-fns'
export = startOfISOYear
}
declare module 'date-fns/startOfMinute' {
import {startOfMinute} from 'date-fns'
export = startOfMinute
}
declare module 'date-fns/startOfMonth' {
import {startOfMonth} from 'date-fns'
export = startOfMonth
}
declare module 'date-fns/startOfQuarter' {
import {startOfQuarter} from 'date-fns'
export = startOfQuarter
}
declare module 'date-fns/startOfSecond' {
import {startOfSecond} from 'date-fns'
export = startOfSecond
}
declare module 'date-fns/startOfWeek' {
import {startOfWeek} from 'date-fns'
export = startOfWeek
}
declare module 'date-fns/startOfYear' {
import {startOfYear} from 'date-fns'
export = startOfYear
}
declare module 'date-fns/subDays' {
import {subDays} from 'date-fns'
export = subDays
}
declare module 'date-fns/subHours' {
import {subHours} from 'date-fns'
export = subHours
}
declare module 'date-fns/subISOYears' {
import {subISOYears} from 'date-fns'
export = subISOYears
}
declare module 'date-fns/subMilliseconds' {
import {subMilliseconds} from 'date-fns'
export = subMilliseconds
}
declare module 'date-fns/subMinutes' {
import {subMinutes} from 'date-fns'
export = subMinutes
}
declare module 'date-fns/subMonths' {
import {subMonths} from 'date-fns'
export = subMonths
}
declare module 'date-fns/subQuarters' {
import {subQuarters} from 'date-fns'
export = subQuarters
}
declare module 'date-fns/subSeconds' {
import {subSeconds} from 'date-fns'
export = subSeconds
}
declare module 'date-fns/subWeeks' {
import {subWeeks} from 'date-fns'
export = subWeeks
}
declare module 'date-fns/subYears' {
import {subYears} from 'date-fns'
export = subYears
}
declare module 'date-fns/toDate' {
import {toDate} from 'date-fns'
export = toDate
}
declare module 'date-fns/addDays/index' {
import {addDays} from 'date-fns'
export = addDays
}
declare module 'date-fns/addHours/index' {
import {addHours} from 'date-fns'
export = addHours
}
declare module 'date-fns/addISOYears/index' {
import {addISOYears} from 'date-fns'
export = addISOYears
}
declare module 'date-fns/addMilliseconds/index' {
import {addMilliseconds} from 'date-fns'
export = addMilliseconds
}
declare module 'date-fns/addMinutes/index' {
import {addMinutes} from 'date-fns'
export = addMinutes
}
declare module 'date-fns/addMonths/index' {
import {addMonths} from 'date-fns'
export = addMonths
}
declare module 'date-fns/addQuarters/index' {
import {addQuarters} from 'date-fns'
export = addQuarters
}
declare module 'date-fns/addSeconds/index' {
import {addSeconds} from 'date-fns'
export = addSeconds
}
declare module 'date-fns/addWeeks/index' {
import {addWeeks} from 'date-fns'
export = addWeeks
}
declare module 'date-fns/addYears/index' {
import {addYears} from 'date-fns'
export = addYears
}
declare module 'date-fns/areIntervalsOverlapping/index' {
import {areIntervalsOverlapping} from 'date-fns'
export = areIntervalsOverlapping
}
declare module 'date-fns/closestIndexTo/index' {
import {closestIndexTo} from 'date-fns'
export = closestIndexTo
}
declare module 'date-fns/closestTo/index' {
import {closestTo} from 'date-fns'
export = closestTo
}
declare module 'date-fns/compareAsc/index' {
import {compareAsc} from 'date-fns'
export = compareAsc
}
declare module 'date-fns/compareDesc/index' {
import {compareDesc} from 'date-fns'
export = compareDesc
}
declare module 'date-fns/differenceInCalendarDays/index' {
import {differenceInCalendarDays} from 'date-fns'
export = differenceInCalendarDays
}
declare module 'date-fns/differenceInCalendarISOWeeks/index' {
import {differenceInCalendarISOWeeks} from 'date-fns'
export = differenceInCalendarISOWeeks
}
declare module 'date-fns/differenceInCalendarISOYears/index' {
import {differenceInCalendarISOYears} from 'date-fns'
export = differenceInCalendarISOYears
}
declare module 'date-fns/differenceInCalendarMonths/index' {
import {differenceInCalendarMonths} from 'date-fns'
export = differenceInCalendarMonths
}
declare module 'date-fns/differenceInCalendarQuarters/index' {
import {differenceInCalendarQuarters} from 'date-fns'
export = differenceInCalendarQuarters
}
declare module 'date-fns/differenceInCalendarWeeks/index' {
import {differenceInCalendarWeeks} from 'date-fns'
export = differenceInCalendarWeeks
}
declare module 'date-fns/differenceInCalendarYears/index' {
import {differenceInCalendarYears} from 'date-fns'
export = differenceInCalendarYears
}
declare module 'date-fns/differenceInDays/index' {
import {differenceInDays} from 'date-fns'
export = differenceInDays
}
declare module 'date-fns/differenceInHours/index' {
import {differenceInHours} from 'date-fns'
export = differenceInHours
}
declare module 'date-fns/differenceInISOYears/index' {
import {differenceInISOYears} from 'date-fns'
export = differenceInISOYears
}
declare module 'date-fns/differenceInMilliseconds/index' {
import {differenceInMilliseconds} from 'date-fns'
export = differenceInMilliseconds
}
declare module 'date-fns/differenceInMinutes/index' {
import {differenceInMinutes} from 'date-fns'
export = differenceInMinutes
}
declare module 'date-fns/differenceInMonths/index' {
import {differenceInMonths} from 'date-fns'
export = differenceInMonths
}
declare module 'date-fns/differenceInQuarters/index' {
import {differenceInQuarters} from 'date-fns'
export = differenceInQuarters
}
declare module 'date-fns/differenceInSeconds/index' {
import {differenceInSeconds} from 'date-fns'
export = differenceInSeconds
}
declare module 'date-fns/differenceInWeeks/index' {
import {differenceInWeeks} from 'date-fns'
export = differenceInWeeks
}
declare module 'date-fns/differenceInYears/index' {
import {differenceInYears} from 'date-fns'
export = differenceInYears
}
declare module 'date-fns/eachDayOfInterval/index' {
import {eachDayOfInterval} from 'date-fns'
export = eachDayOfInterval
}
declare module 'date-fns/endOfDay/index' {
import {endOfDay} from 'date-fns'
export = endOfDay
}
declare module 'date-fns/endOfHour/index' {
import {endOfHour} from 'date-fns'
export = endOfHour
}
declare module 'date-fns/endOfISOWeek/index' {
import {endOfISOWeek} from 'date-fns'
export = endOfISOWeek
}
declare module 'date-fns/endOfISOYear/index' {
import {endOfISOYear} from 'date-fns'
export = endOfISOYear
}
declare module 'date-fns/endOfMinute/index' {
import {endOfMinute} from 'date-fns'
export = endOfMinute
}
declare module 'date-fns/endOfMonth/index' {
import {endOfMonth} from 'date-fns'
export = endOfMonth
}
declare module 'date-fns/endOfQuarter/index' {
import {endOfQuarter} from 'date-fns'
export = endOfQuarter
}
declare module 'date-fns/endOfSecond/index' {
import {endOfSecond} from 'date-fns'
export = endOfSecond
}
declare module 'date-fns/endOfWeek/index' {
import {endOfWeek} from 'date-fns'
export = endOfWeek
}
declare module 'date-fns/endOfYear/index' {
import {endOfYear} from 'date-fns'
export = endOfYear
}
declare module 'date-fns/format/index' {
import {format} from 'date-fns'
export = format
}
declare module 'date-fns/formatDistance/index' {
import {formatDistance} from 'date-fns'
export = formatDistance
}
declare module 'date-fns/formatDistanceStrict/index' {
import {formatDistanceStrict} from 'date-fns'
export = formatDistanceStrict
}
declare module 'date-fns/formatRelative/index' {
import {formatRelative} from 'date-fns'
export = formatRelative
}
declare module 'date-fns/getDate/index' {
import {getDate} from 'date-fns'
export = getDate
}
declare module 'date-fns/getDay/index' {
import {getDay} from 'date-fns'
export = getDay
}
declare module 'date-fns/getDayOfYear/index' {
import {getDayOfYear} from 'date-fns'
export = getDayOfYear
}
declare module 'date-fns/getDaysInMonth/index' {
import {getDaysInMonth} from 'date-fns'
export = getDaysInMonth
}
declare module 'date-fns/getDaysInYear/index' {
import {getDaysInYear} from 'date-fns'
export = getDaysInYear
}
declare module 'date-fns/getHours/index' {
import {getHours} from 'date-fns'
export = getHours
}
declare module 'date-fns/getISODay/index' {
import {getISODay} from 'date-fns'
export = getISODay
}
declare module 'date-fns/getISOWeek/index' {
import {getISOWeek} from 'date-fns'
export = getISOWeek
}
declare module 'date-fns/getISOWeeksInYear/index' {
import {getISOWeeksInYear} from 'date-fns'
export = getISOWeeksInYear
}
declare module 'date-fns/getISOYear/index' {
import {getISOYear} from 'date-fns'
export = getISOYear
}
declare module 'date-fns/getMilliseconds/index' {
import {getMilliseconds} from 'date-fns'
export = getMilliseconds
}
declare module 'date-fns/getMinutes/index' {
import {getMinutes} from 'date-fns'
export = getMinutes
}
declare module 'date-fns/getMonth/index' {
import {getMonth} from 'date-fns'
export = getMonth
}
declare module 'date-fns/getOverlappingDaysInIntervals/index' {
import {getOverlappingDaysInIntervals} from 'date-fns'
export = getOverlappingDaysInIntervals
}
declare module 'date-fns/getQuarter/index' {
import {getQuarter} from 'date-fns'
export = getQuarter
}
declare module 'date-fns/getSeconds/index' {
import {getSeconds} from 'date-fns'
export = getSeconds
}
declare module 'date-fns/getTime/index' {
import {getTime} from 'date-fns'
export = getTime
}
declare module 'date-fns/getYear/index' {
import {getYear} from 'date-fns'
export = getYear
}
declare module 'date-fns/isAfter/index' {
import {isAfter} from 'date-fns'
export = isAfter
}
declare module 'date-fns/isBefore/index' {
import {isBefore} from 'date-fns'
export = isBefore
}
declare module 'date-fns/isEqual/index' {
import {isEqual} from 'date-fns'
export = isEqual
}
declare module 'date-fns/isFirstDayOfMonth/index' {
import {isFirstDayOfMonth} from 'date-fns'
export = isFirstDayOfMonth
}
declare module 'date-fns/isFriday/index' {
import {isFriday} from 'date-fns'
export = isFriday
}
declare module 'date-fns/isLastDayOfMonth/index' {
import {isLastDayOfMonth} from 'date-fns'
export = isLastDayOfMonth
}
declare module 'date-fns/isLeapYear/index' {
import {isLeapYear} from 'date-fns'
export = isLeapYear
}
declare module 'date-fns/isMonday/index' {
import {isMonday} from 'date-fns'
export = isMonday
}
declare module 'date-fns/isSameDay/index' {
import {isSameDay} from 'date-fns'
export = isSameDay
}
declare module 'date-fns/isSameHour/index' {
import {isSameHour} from 'date-fns'
export = isSameHour
}
declare module 'date-fns/isSameISOWeek/index' {
import {isSameISOWeek} from 'date-fns'
export = isSameISOWeek
}
declare module 'date-fns/isSameISOYear/index' {
import {isSameISOYear} from 'date-fns'
export = isSameISOYear
}
declare module 'date-fns/isSameMinute/index' {
import {isSameMinute} from 'date-fns'
export = isSameMinute
}
declare module 'date-fns/isSameMonth/index' {
import {isSameMonth} from 'date-fns'
export = isSameMonth
}
declare module 'date-fns/isSameQuarter/index' {
import {isSameQuarter} from 'date-fns'
export = isSameQuarter
}
declare module 'date-fns/isSameSecond/index' {
import {isSameSecond} from 'date-fns'
export = isSameSecond
}
declare module 'date-fns/isSameWeek/index' {
import {isSameWeek} from 'date-fns'
export = isSameWeek
}
declare module 'date-fns/isSameYear/index' {
import {isSameYear} from 'date-fns'
export = isSameYear
}
declare module 'date-fns/isSaturday/index' {
import {isSaturday} from 'date-fns'
export = isSaturday
}
declare module 'date-fns/isSunday/index' {
import {isSunday} from 'date-fns'
export = isSunday
}
declare module 'date-fns/isThursday/index' {
import {isThursday} from 'date-fns'
export = isThursday
}
declare module 'date-fns/isTuesday/index' {
import {isTuesday} from 'date-fns'
export = isTuesday
}
declare module 'date-fns/isValid/index' {
import {isValid} from 'date-fns'
export = isValid
}
declare module 'date-fns/isWednesday/index' {
import {isWednesday} from 'date-fns'
export = isWednesday
}
declare module 'date-fns/isWeekend/index' {
import {isWeekend} from 'date-fns'
export = isWeekend
}
declare module 'date-fns/isWithinInterval/index' {
import {isWithinInterval} from 'date-fns'
export = isWithinInterval
}
declare module 'date-fns/lastDayOfISOWeek/index' {
import {lastDayOfISOWeek} from 'date-fns'
export = lastDayOfISOWeek
}
declare module 'date-fns/lastDayOfISOYear/index' {
import {lastDayOfISOYear} from 'date-fns'
export = lastDayOfISOYear
}
declare module 'date-fns/lastDayOfMonth/index' {
import {lastDayOfMonth} from 'date-fns'
export = lastDayOfMonth
}
declare module 'date-fns/lastDayOfQuarter/index' {
import {lastDayOfQuarter} from 'date-fns'
export = lastDayOfQuarter
}
declare module 'date-fns/lastDayOfWeek/index' {
import {lastDayOfWeek} from 'date-fns'
export = lastDayOfWeek
}
declare module 'date-fns/lastDayOfYear/index' {
import {lastDayOfYear} from 'date-fns'
export = lastDayOfYear
}
declare module 'date-fns/max/index' {
import {max} from 'date-fns'
export = max
}
declare module 'date-fns/min/index' {
import {min} from 'date-fns'
export = min
}
declare module 'date-fns/parse/index' {
import {parse} from 'date-fns'
export = parse
}
declare module 'date-fns/setDate/index' {
import {setDate} from 'date-fns'
export = setDate
}
declare module 'date-fns/setDay/index' {
import {setDay} from 'date-fns'
export = setDay
}
declare module 'date-fns/setDayOfYear/index' {
import {setDayOfYear} from 'date-fns'
export = setDayOfYear
}
declare module 'date-fns/setHours/index' {
import {setHours} from 'date-fns'
export = setHours
}
declare module 'date-fns/setISODay/index' {
import {setISODay} from 'date-fns'
export = setISODay
}
declare module 'date-fns/setISOWeek/index' {
import {setISOWeek} from 'date-fns'
export = setISOWeek
}
declare module 'date-fns/setISOYear/index' {
import {setISOYear} from 'date-fns'
export = setISOYear
}
declare module 'date-fns/setMilliseconds/index' {
import {setMilliseconds} from 'date-fns'
export = setMilliseconds
}
declare module 'date-fns/setMinutes/index' {
import {setMinutes} from 'date-fns'
export = setMinutes
}
declare module 'date-fns/setMonth/index' {
import {setMonth} from 'date-fns'
export = setMonth
}
declare module 'date-fns/setQuarter/index' {
import {setQuarter} from 'date-fns'
export = setQuarter
}
declare module 'date-fns/setSeconds/index' {
import {setSeconds} from 'date-fns'
export = setSeconds
}
declare module 'date-fns/setYear/index' {
import {setYear} from 'date-fns'
export = setYear
}
declare module 'date-fns/startOfDay/index' {
import {startOfDay} from 'date-fns'
export = startOfDay
}
declare module 'date-fns/startOfHour/index' {
import {startOfHour} from 'date-fns'
export = startOfHour
}
declare module 'date-fns/startOfISOWeek/index' {
import {startOfISOWeek} from 'date-fns'
export = startOfISOWeek
}
declare module 'date-fns/startOfISOYear/index' {
import {startOfISOYear} from 'date-fns'
export = startOfISOYear
}
declare module 'date-fns/startOfMinute/index' {
import {startOfMinute} from 'date-fns'
export = startOfMinute
}
declare module 'date-fns/startOfMonth/index' {
import {startOfMonth} from 'date-fns'
export = startOfMonth
}
declare module 'date-fns/startOfQuarter/index' {
import {startOfQuarter} from 'date-fns'
export = startOfQuarter
}
declare module 'date-fns/startOfSecond/index' {
import {startOfSecond} from 'date-fns'
export = startOfSecond
}
declare module 'date-fns/startOfWeek/index' {
import {startOfWeek} from 'date-fns'
export = startOfWeek
}
declare module 'date-fns/startOfYear/index' {
import {startOfYear} from 'date-fns'
export = startOfYear
}
declare module 'date-fns/subDays/index' {
import {subDays} from 'date-fns'
export = subDays
}
declare module 'date-fns/subHours/index' {
import {subHours} from 'date-fns'
export = subHours
}
declare module 'date-fns/subISOYears/index' {
import {subISOYears} from 'date-fns'
export = subISOYears
}
declare module 'date-fns/subMilliseconds/index' {
import {subMilliseconds} from 'date-fns'
export = subMilliseconds
}
declare module 'date-fns/subMinutes/index' {
import {subMinutes} from 'date-fns'
export = subMinutes
}
declare module 'date-fns/subMonths/index' {
import {subMonths} from 'date-fns'
export = subMonths
}
declare module 'date-fns/subQuarters/index' {
import {subQuarters} from 'date-fns'
export = subQuarters
}
declare module 'date-fns/subSeconds/index' {
import {subSeconds} from 'date-fns'
export = subSeconds
}
declare module 'date-fns/subWeeks/index' {
import {subWeeks} from 'date-fns'
export = subWeeks
}
declare module 'date-fns/subYears/index' {
import {subYears} from 'date-fns'
export = subYears
}
declare module 'date-fns/toDate/index' {
import {toDate} from 'date-fns'
export = toDate
}
declare module 'date-fns/addDays/index.js' {
import {addDays} from 'date-fns'
export = addDays
}
declare module 'date-fns/addHours/index.js' {
import {addHours} from 'date-fns'
export = addHours
}
declare module 'date-fns/addISOYears/index.js' {
import {addISOYears} from 'date-fns'
export = addISOYears
}
declare module 'date-fns/addMilliseconds/index.js' {
import {addMilliseconds} from 'date-fns'
export = addMilliseconds
}
declare module 'date-fns/addMinutes/index.js' {
import {addMinutes} from 'date-fns'
export = addMinutes
}
declare module 'date-fns/addMonths/index.js' {
import {addMonths} from 'date-fns'
export = addMonths
}
declare module 'date-fns/addQuarters/index.js' {
import {addQuarters} from 'date-fns'
export = addQuarters
}
declare module 'date-fns/addSeconds/index.js' {
import {addSeconds} from 'date-fns'
export = addSeconds
}
declare module 'date-fns/addWeeks/index.js' {
import {addWeeks} from 'date-fns'
export = addWeeks
}
declare module 'date-fns/addYears/index.js' {
import {addYears} from 'date-fns'
export = addYears
}
declare module 'date-fns/areIntervalsOverlapping/index.js' {
import {areIntervalsOverlapping} from 'date-fns'
export = areIntervalsOverlapping
}
declare module 'date-fns/closestIndexTo/index.js' {
import {closestIndexTo} from 'date-fns'
export = closestIndexTo
}
declare module 'date-fns/closestTo/index.js' {
import {closestTo} from 'date-fns'
export = closestTo
}
declare module 'date-fns/compareAsc/index.js' {
import {compareAsc} from 'date-fns'
export = compareAsc
}
declare module 'date-fns/compareDesc/index.js' {
import {compareDesc} from 'date-fns'
export = compareDesc
}
declare module 'date-fns/differenceInCalendarDays/index.js' {
import {differenceInCalendarDays} from 'date-fns'
export = differenceInCalendarDays
}
declare module 'date-fns/differenceInCalendarISOWeeks/index.js' {
import {differenceInCalendarISOWeeks} from 'date-fns'
export = differenceInCalendarISOWeeks
}
declare module 'date-fns/differenceInCalendarISOYears/index.js' {
import {differenceInCalendarISOYears} from 'date-fns'
export = differenceInCalendarISOYears
}
declare module 'date-fns/differenceInCalendarMonths/index.js' {
import {differenceInCalendarMonths} from 'date-fns'
export = differenceInCalendarMonths
}
declare module 'date-fns/differenceInCalendarQuarters/index.js' {
import {differenceInCalendarQuarters} from 'date-fns'
export = differenceInCalendarQuarters
}
declare module 'date-fns/differenceInCalendarWeeks/index.js' {
import {differenceInCalendarWeeks} from 'date-fns'
export = differenceInCalendarWeeks
}
declare module 'date-fns/differenceInCalendarYears/index.js' {
import {differenceInCalendarYears} from 'date-fns'
export = differenceInCalendarYears
}
declare module 'date-fns/differenceInDays/index.js' {
import {differenceInDays} from 'date-fns'
export = differenceInDays
}
declare module 'date-fns/differenceInHours/index.js' {
import {differenceInHours} from 'date-fns'
export = differenceInHours
}
declare module 'date-fns/differenceInISOYears/index.js' {
import {differenceInISOYears} from 'date-fns'
export = differenceInISOYears
}
declare module 'date-fns/differenceInMilliseconds/index.js' {
import {differenceInMilliseconds} from 'date-fns'
export = differenceInMilliseconds
}
declare module 'date-fns/differenceInMinutes/index.js' {
import {differenceInMinutes} from 'date-fns'
export = differenceInMinutes
}
declare module 'date-fns/differenceInMonths/index.js' {
import {differenceInMonths} from 'date-fns'
export = differenceInMonths
}
declare module 'date-fns/differenceInQuarters/index.js' {
import {differenceInQuarters} from 'date-fns'
export = differenceInQuarters
}
declare module 'date-fns/differenceInSeconds/index.js' {
import {differenceInSeconds} from 'date-fns'
export = differenceInSeconds
}
declare module 'date-fns/differenceInWeeks/index.js' {
import {differenceInWeeks} from 'date-fns'
export = differenceInWeeks
}
declare module 'date-fns/differenceInYears/index.js' {
import {differenceInYears} from 'date-fns'
export = differenceInYears
}
declare module 'date-fns/eachDayOfInterval/index.js' {
import {eachDayOfInterval} from 'date-fns'
export = eachDayOfInterval
}
declare module 'date-fns/endOfDay/index.js' {
import {endOfDay} from 'date-fns'
export = endOfDay
}
declare module 'date-fns/endOfHour/index.js' {
import {endOfHour} from 'date-fns'
export = endOfHour
}
declare module 'date-fns/endOfISOWeek/index.js' {
import {endOfISOWeek} from 'date-fns'
export = endOfISOWeek
}
declare module 'date-fns/endOfISOYear/index.js' {
import {endOfISOYear} from 'date-fns'
export = endOfISOYear
}
declare module 'date-fns/endOfMinute/index.js' {
import {endOfMinute} from 'date-fns'
export = endOfMinute
}
declare module 'date-fns/endOfMonth/index.js' {
import {endOfMonth} from 'date-fns'
export = endOfMonth
}
declare module 'date-fns/endOfQuarter/index.js' {
import {endOfQuarter} from 'date-fns'
export = endOfQuarter
}
declare module 'date-fns/endOfSecond/index.js' {
import {endOfSecond} from 'date-fns'
export = endOfSecond
}
declare module 'date-fns/endOfWeek/index.js' {
import {endOfWeek} from 'date-fns'
export = endOfWeek
}
declare module 'date-fns/endOfYear/index.js' {
import {endOfYear} from 'date-fns'
export = endOfYear
}
declare module 'date-fns/format/index.js' {
import {format} from 'date-fns'
export = format
}
declare module 'date-fns/formatDistance/index.js' {
import {formatDistance} from 'date-fns'
export = formatDistance
}
declare module 'date-fns/formatDistanceStrict/index.js' {
import {formatDistanceStrict} from 'date-fns'
export = formatDistanceStrict
}
declare module 'date-fns/formatRelative/index.js' {
import {formatRelative} from 'date-fns'
export = formatRelative
}
declare module 'date-fns/getDate/index.js' {
import {getDate} from 'date-fns'
export = getDate
}
declare module 'date-fns/getDay/index.js' {
import {getDay} from 'date-fns'
export = getDay
}
declare module 'date-fns/getDayOfYear/index.js' {
import {getDayOfYear} from 'date-fns'
export = getDayOfYear
}
declare module 'date-fns/getDaysInMonth/index.js' {
import {getDaysInMonth} from 'date-fns'
export = getDaysInMonth
}
declare module 'date-fns/getDaysInYear/index.js' {
import {getDaysInYear} from 'date-fns'
export = getDaysInYear
}
declare module 'date-fns/getHours/index.js' {
import {getHours} from 'date-fns'
export = getHours
}
declare module 'date-fns/getISODay/index.js' {
import {getISODay} from 'date-fns'
export = getISODay
}
declare module 'date-fns/getISOWeek/index.js' {
import {getISOWeek} from 'date-fns'
export = getISOWeek
}
declare module 'date-fns/getISOWeeksInYear/index.js' {
import {getISOWeeksInYear} from 'date-fns'
export = getISOWeeksInYear
}
declare module 'date-fns/getISOYear/index.js' {
import {getISOYear} from 'date-fns'
export = getISOYear
}
declare module 'date-fns/getMilliseconds/index.js' {
import {getMilliseconds} from 'date-fns'
export = getMilliseconds
}
declare module 'date-fns/getMinutes/index.js' {
import {getMinutes} from 'date-fns'
export = getMinutes
}
declare module 'date-fns/getMonth/index.js' {
import {getMonth} from 'date-fns'
export = getMonth
}
declare module 'date-fns/getOverlappingDaysInIntervals/index.js' {
import {getOverlappingDaysInIntervals} from 'date-fns'
export = getOverlappingDaysInIntervals
}
declare module 'date-fns/getQuarter/index.js' {
import {getQuarter} from 'date-fns'
export = getQuarter
}
declare module 'date-fns/getSeconds/index.js' {
import {getSeconds} from 'date-fns'
export = getSeconds
}
declare module 'date-fns/getTime/index.js' {
import {getTime} from 'date-fns'
export = getTime
}
declare module 'date-fns/getYear/index.js' {
import {getYear} from 'date-fns'
export = getYear
}
declare module 'date-fns/isAfter/index.js' {
import {isAfter} from 'date-fns'
export = isAfter
}
declare module 'date-fns/isBefore/index.js' {
import {isBefore} from 'date-fns'
export = isBefore
}
declare module 'date-fns/isEqual/index.js' {
import {isEqual} from 'date-fns'
export = isEqual
}
declare module 'date-fns/isFirstDayOfMonth/index.js' {
import {isFirstDayOfMonth} from 'date-fns'
export = isFirstDayOfMonth
}
declare module 'date-fns/isFriday/index.js' {
import {isFriday} from 'date-fns'
export = isFriday
}
declare module 'date-fns/isLastDayOfMonth/index.js' {
import {isLastDayOfMonth} from 'date-fns'
export = isLastDayOfMonth
}
declare module 'date-fns/isLeapYear/index.js' {
import {isLeapYear} from 'date-fns'
export = isLeapYear
}
declare module 'date-fns/isMonday/index.js' {
import {isMonday} from 'date-fns'
export = isMonday
}
declare module 'date-fns/isSameDay/index.js' {
import {isSameDay} from 'date-fns'
export = isSameDay
}
declare module 'date-fns/isSameHour/index.js' {
import {isSameHour} from 'date-fns'
export = isSameHour
}
declare module 'date-fns/isSameISOWeek/index.js' {
import {isSameISOWeek} from 'date-fns'
export = isSameISOWeek
}
declare module 'date-fns/isSameISOYear/index.js' {
import {isSameISOYear} from 'date-fns'
export = isSameISOYear
}
declare module 'date-fns/isSameMinute/index.js' {
import {isSameMinute} from 'date-fns'
export = isSameMinute
}
declare module 'date-fns/isSameMonth/index.js' {
import {isSameMonth} from 'date-fns'
export = isSameMonth
}
declare module 'date-fns/isSameQuarter/index.js' {
import {isSameQuarter} from 'date-fns'
export = isSameQuarter
}
declare module 'date-fns/isSameSecond/index.js' {
import {isSameSecond} from 'date-fns'
export = isSameSecond
}
declare module 'date-fns/isSameWeek/index.js' {
import {isSameWeek} from 'date-fns'
export = isSameWeek
}
declare module 'date-fns/isSameYear/index.js' {
import {isSameYear} from 'date-fns'
export = isSameYear
}
declare module 'date-fns/isSaturday/index.js' {
import {isSaturday} from 'date-fns'
export = isSaturday
}
declare module 'date-fns/isSunday/index.js' {
import {isSunday} from 'date-fns'
export = isSunday
}
declare module 'date-fns/isThursday/index.js' {
import {isThursday} from 'date-fns'
export = isThursday
}
declare module 'date-fns/isTuesday/index.js' {
import {isTuesday} from 'date-fns'
export = isTuesday
}
declare module 'date-fns/isValid/index.js' {
import {isValid} from 'date-fns'
export = isValid
}
declare module 'date-fns/isWednesday/index.js' {
import {isWednesday} from 'date-fns'
export = isWednesday
}
declare module 'date-fns/isWeekend/index.js' {
import {isWeekend} from 'date-fns'
export = isWeekend
}
declare module 'date-fns/isWithinInterval/index.js' {
import {isWithinInterval} from 'date-fns'
export = isWithinInterval
}
declare module 'date-fns/lastDayOfISOWeek/index.js' {
import {lastDayOfISOWeek} from 'date-fns'
export = lastDayOfISOWeek
}
declare module 'date-fns/lastDayOfISOYear/index.js' {
import {lastDayOfISOYear} from 'date-fns'
export = lastDayOfISOYear
}
declare module 'date-fns/lastDayOfMonth/index.js' {
import {lastDayOfMonth} from 'date-fns'
export = lastDayOfMonth
}
declare module 'date-fns/lastDayOfQuarter/index.js' {
import {lastDayOfQuarter} from 'date-fns'
export = lastDayOfQuarter
}
declare module 'date-fns/lastDayOfWeek/index.js' {
import {lastDayOfWeek} from 'date-fns'
export = lastDayOfWeek
}
declare module 'date-fns/lastDayOfYear/index.js' {
import {lastDayOfYear} from 'date-fns'
export = lastDayOfYear
}
declare module 'date-fns/max/index.js' {
import {max} from 'date-fns'
export = max
}
declare module 'date-fns/min/index.js' {
import {min} from 'date-fns'
export = min
}
declare module 'date-fns/parse/index.js' {
import {parse} from 'date-fns'
export = parse
}
declare module 'date-fns/setDate/index.js' {
import {setDate} from 'date-fns'
export = setDate
}
declare module 'date-fns/setDay/index.js' {
import {setDay} from 'date-fns'
export = setDay
}
declare module 'date-fns/setDayOfYear/index.js' {
import {setDayOfYear} from 'date-fns'
export = setDayOfYear
}
declare module 'date-fns/setHours/index.js' {
import {setHours} from 'date-fns'
export = setHours
}
declare module 'date-fns/setISODay/index.js' {
import {setISODay} from 'date-fns'
export = setISODay
}
declare module 'date-fns/setISOWeek/index.js' {
import {setISOWeek} from 'date-fns'
export = setISOWeek
}
declare module 'date-fns/setISOYear/index.js' {
import {setISOYear} from 'date-fns'
export = setISOYear
}
declare module 'date-fns/setMilliseconds/index.js' {
import {setMilliseconds} from 'date-fns'
export = setMilliseconds
}
declare module 'date-fns/setMinutes/index.js' {
import {setMinutes} from 'date-fns'
export = setMinutes
}
declare module 'date-fns/setMonth/index.js' {
import {setMonth} from 'date-fns'
export = setMonth
}
declare module 'date-fns/setQuarter/index.js' {
import {setQuarter} from 'date-fns'
export = setQuarter
}
declare module 'date-fns/setSeconds/index.js' {
import {setSeconds} from 'date-fns'
export = setSeconds
}
declare module 'date-fns/setYear/index.js' {
import {setYear} from 'date-fns'
export = setYear
}
declare module 'date-fns/startOfDay/index.js' {
import {startOfDay} from 'date-fns'
export = startOfDay
}
declare module 'date-fns/startOfHour/index.js' {
import {startOfHour} from 'date-fns'
export = startOfHour
}
declare module 'date-fns/startOfISOWeek/index.js' {
import {startOfISOWeek} from 'date-fns'
export = startOfISOWeek
}
declare module 'date-fns/startOfISOYear/index.js' {
import {startOfISOYear} from 'date-fns'
export = startOfISOYear
}
declare module 'date-fns/startOfMinute/index.js' {
import {startOfMinute} from 'date-fns'
export = startOfMinute
}
declare module 'date-fns/startOfMonth/index.js' {
import {startOfMonth} from 'date-fns'
export = startOfMonth
}
declare module 'date-fns/startOfQuarter/index.js' {
import {startOfQuarter} from 'date-fns'
export = startOfQuarter
}
declare module 'date-fns/startOfSecond/index.js' {
import {startOfSecond} from 'date-fns'
export = startOfSecond
}
declare module 'date-fns/startOfWeek/index.js' {
import {startOfWeek} from 'date-fns'
export = startOfWeek
}
declare module 'date-fns/startOfYear/index.js' {
import {startOfYear} from 'date-fns'
export = startOfYear
}
declare module 'date-fns/subDays/index.js' {
import {subDays} from 'date-fns'
export = subDays
}
declare module 'date-fns/subHours/index.js' {
import {subHours} from 'date-fns'
export = subHours
}
declare module 'date-fns/subISOYears/index.js' {
import {subISOYears} from 'date-fns'
export = subISOYears
}
declare module 'date-fns/subMilliseconds/index.js' {
import {subMilliseconds} from 'date-fns'
export = subMilliseconds
}
declare module 'date-fns/subMinutes/index.js' {
import {subMinutes} from 'date-fns'
export = subMinutes
}
declare module 'date-fns/subMonths/index.js' {
import {subMonths} from 'date-fns'
export = subMonths
}
declare module 'date-fns/subQuarters/index.js' {
import {subQuarters} from 'date-fns'
export = subQuarters
}
declare module 'date-fns/subSeconds/index.js' {
import {subSeconds} from 'date-fns'
export = subSeconds
}
declare module 'date-fns/subWeeks/index.js' {
import {subWeeks} from 'date-fns'
export = subWeeks
}
declare module 'date-fns/subYears/index.js' {
import {subYears} from 'date-fns'
export = subYears
}
declare module 'date-fns/toDate/index.js' {
import {toDate} from 'date-fns'
export = toDate
}
// FP Functions
declare module 'date-fns/fp' {
const addDays: CurriedFn2
namespace addDays {}
const addDaysWithOptions: CurriedFn3
namespace addDaysWithOptions {}
const addHours: CurriedFn2
namespace addHours {}
const addHoursWithOptions: CurriedFn3
namespace addHoursWithOptions {}
const addISOYears: CurriedFn2
namespace addISOYears {}
const addISOYearsWithOptions: CurriedFn3
namespace addISOYearsWithOptions {}
const addMilliseconds: CurriedFn2
namespace addMilliseconds {}
const addMillisecondsWithOptions: CurriedFn3
namespace addMillisecondsWithOptions {}
const addMinutes: CurriedFn2
namespace addMinutes {}
const addMinutesWithOptions: CurriedFn3
namespace addMinutesWithOptions {}
const addMonths: CurriedFn2
namespace addMonths {}
const addMonthsWithOptions: CurriedFn3
namespace addMonthsWithOptions {}
const addQuarters: CurriedFn2
namespace addQuarters {}
const addQuartersWithOptions: CurriedFn3
namespace addQuartersWithOptions {}
const addSeconds: CurriedFn2
namespace addSeconds {}
const addSecondsWithOptions: CurriedFn3
namespace addSecondsWithOptions {}
const addWeeks: CurriedFn2
namespace addWeeks {}
const addWeeksWithOptions: CurriedFn3
namespace addWeeksWithOptions {}
const addYears: CurriedFn2
namespace addYears {}
const addYearsWithOptions: CurriedFn3
namespace addYearsWithOptions {}
const areIntervalsOverlapping: CurriedFn2
namespace areIntervalsOverlapping {}
const areIntervalsOverlappingWithOptions: CurriedFn3
namespace areIntervalsOverlappingWithOptions {}
const closestIndexTo: CurriedFn2<(Date | string | number)[], Date | string | number, number>
namespace closestIndexTo {}
const closestIndexToWithOptions: CurriedFn3
namespace closestIndexToWithOptions {}
const closestTo: CurriedFn2<(Date | string | number)[], Date | string | number, Date>
namespace closestTo {}
const closestToWithOptions: CurriedFn3
namespace closestToWithOptions {}
const compareAsc: CurriedFn2
namespace compareAsc {}
const compareAscWithOptions: CurriedFn3
namespace compareAscWithOptions {}
const compareDesc: CurriedFn2
namespace compareDesc {}
const compareDescWithOptions: CurriedFn3
namespace compareDescWithOptions {}
const differenceInCalendarDays: CurriedFn2
namespace differenceInCalendarDays {}
const differenceInCalendarDaysWithOptions: CurriedFn3
namespace differenceInCalendarDaysWithOptions {}
const differenceInCalendarISOWeeks: CurriedFn2
namespace differenceInCalendarISOWeeks {}
const differenceInCalendarISOWeeksWithOptions: CurriedFn3
namespace differenceInCalendarISOWeeksWithOptions {}
const differenceInCalendarISOYears: CurriedFn2
namespace differenceInCalendarISOYears {}
const differenceInCalendarISOYearsWithOptions: CurriedFn3
namespace differenceInCalendarISOYearsWithOptions {}
const differenceInCalendarMonths: CurriedFn2
namespace differenceInCalendarMonths {}
const differenceInCalendarMonthsWithOptions: CurriedFn3
namespace differenceInCalendarMonthsWithOptions {}
const differenceInCalendarQuarters: CurriedFn2
namespace differenceInCalendarQuarters {}
const differenceInCalendarQuartersWithOptions: CurriedFn3
namespace differenceInCalendarQuartersWithOptions {}
const differenceInCalendarWeeks: CurriedFn2
namespace differenceInCalendarWeeks {}
const differenceInCalendarWeeksWithOptions: CurriedFn3
namespace differenceInCalendarWeeksWithOptions {}
const differenceInCalendarYears: CurriedFn2
namespace differenceInCalendarYears {}
const differenceInCalendarYearsWithOptions: CurriedFn3
namespace differenceInCalendarYearsWithOptions {}
const differenceInDays: CurriedFn2
namespace differenceInDays {}
const differenceInDaysWithOptions: CurriedFn3
namespace differenceInDaysWithOptions {}
const differenceInHours: CurriedFn2
namespace differenceInHours {}
const differenceInHoursWithOptions: CurriedFn3
namespace differenceInHoursWithOptions {}
const differenceInISOYears: CurriedFn2
namespace differenceInISOYears {}
const differenceInISOYearsWithOptions: CurriedFn3
namespace differenceInISOYearsWithOptions {}
const differenceInMilliseconds: CurriedFn2
namespace differenceInMilliseconds {}
const differenceInMillisecondsWithOptions: CurriedFn3
namespace differenceInMillisecondsWithOptions {}
const differenceInMinutes: CurriedFn2
namespace differenceInMinutes {}
const differenceInMinutesWithOptions: CurriedFn3
namespace differenceInMinutesWithOptions {}
const differenceInMonths: CurriedFn2
namespace differenceInMonths {}
const differenceInMonthsWithOptions: CurriedFn3
namespace differenceInMonthsWithOptions {}
const differenceInQuarters: CurriedFn2
namespace differenceInQuarters {}
const differenceInQuartersWithOptions: CurriedFn3
namespace differenceInQuartersWithOptions {}
const differenceInSeconds: CurriedFn2
namespace differenceInSeconds {}
const differenceInSecondsWithOptions: CurriedFn3
namespace differenceInSecondsWithOptions {}
const differenceInWeeks: CurriedFn2
namespace differenceInWeeks {}
const differenceInWeeksWithOptions: CurriedFn3
namespace differenceInWeeksWithOptions {}
const differenceInYears: CurriedFn2
namespace differenceInYears {}
const differenceInYearsWithOptions: CurriedFn3
namespace differenceInYearsWithOptions {}
const eachDayOfInterval: CurriedFn1
namespace eachDayOfInterval {}
const eachDayOfIntervalWithOptions: CurriedFn2
namespace eachDayOfIntervalWithOptions {}
const endOfDay: CurriedFn1
namespace endOfDay {}
const endOfDayWithOptions: CurriedFn2
namespace endOfDayWithOptions {}
const endOfHour: CurriedFn1
namespace endOfHour {}
const endOfHourWithOptions: CurriedFn2
namespace endOfHourWithOptions {}
const endOfISOWeek: CurriedFn1
namespace endOfISOWeek {}
const endOfISOWeekWithOptions: CurriedFn2
namespace endOfISOWeekWithOptions {}
const endOfISOYear: CurriedFn1
namespace endOfISOYear {}
const endOfISOYearWithOptions: CurriedFn2
namespace endOfISOYearWithOptions {}
const endOfMinute: CurriedFn1
namespace endOfMinute {}
const endOfMinuteWithOptions: CurriedFn2
namespace endOfMinuteWithOptions {}
const endOfMonth: CurriedFn1
namespace endOfMonth {}
const endOfMonthWithOptions: CurriedFn2
namespace endOfMonthWithOptions {}
const endOfQuarter: CurriedFn1
namespace endOfQuarter {}
const endOfQuarterWithOptions: CurriedFn2
namespace endOfQuarterWithOptions {}
const endOfSecond: CurriedFn1
namespace endOfSecond {}
const endOfSecondWithOptions: CurriedFn2
namespace endOfSecondWithOptions {}
const endOfWeek: CurriedFn1
namespace endOfWeek {}
const endOfWeekWithOptions: CurriedFn2
namespace endOfWeekWithOptions {}
const endOfYear: CurriedFn1
namespace endOfYear {}
const endOfYearWithOptions: CurriedFn2
namespace endOfYearWithOptions {}
const format: CurriedFn2
namespace format {}
const formatDistance: CurriedFn2
namespace formatDistance {}
const formatDistanceStrict: CurriedFn2
namespace formatDistanceStrict {}
const formatDistanceStrictWithOptions: CurriedFn3
namespace formatDistanceStrictWithOptions {}
const formatDistanceWithOptions: CurriedFn3
namespace formatDistanceWithOptions {}
const formatRelative: CurriedFn2
namespace formatRelative {}
const formatRelativeWithOptions: CurriedFn3
namespace formatRelativeWithOptions {}
const formatWithOptions: CurriedFn3
namespace formatWithOptions {}
const getDate: CurriedFn1
namespace getDate {}
const getDateWithOptions: CurriedFn2
namespace getDateWithOptions {}
const getDay: CurriedFn1
namespace getDay {}
const getDayOfYear: CurriedFn1
namespace getDayOfYear {}
const getDayOfYearWithOptions: CurriedFn2
namespace getDayOfYearWithOptions {}
const getDaysInMonth: CurriedFn1
namespace getDaysInMonth {}
const getDaysInMonthWithOptions: CurriedFn2
namespace getDaysInMonthWithOptions {}
const getDaysInYear: CurriedFn1
namespace getDaysInYear {}
const getDaysInYearWithOptions: CurriedFn2
namespace getDaysInYearWithOptions {}
const getDayWithOptions: CurriedFn2
namespace getDayWithOptions {}
const getHours: CurriedFn1
namespace getHours {}
const getHoursWithOptions: CurriedFn2
namespace getHoursWithOptions {}
const getISODay: CurriedFn1
namespace getISODay {}
const getISODayWithOptions: CurriedFn2
namespace getISODayWithOptions {}
const getISOWeek: CurriedFn1
namespace getISOWeek {}
const getISOWeeksInYear: CurriedFn1
namespace getISOWeeksInYear {}
const getISOWeeksInYearWithOptions: CurriedFn2
namespace getISOWeeksInYearWithOptions {}
const getISOWeekWithOptions: CurriedFn2
namespace getISOWeekWithOptions {}
const getISOYear: CurriedFn1
namespace getISOYear {}
const getISOYearWithOptions: CurriedFn2
namespace getISOYearWithOptions {}
const getMilliseconds: CurriedFn1
namespace getMilliseconds {}
const getMillisecondsWithOptions: CurriedFn2
namespace getMillisecondsWithOptions {}
const getMinutes: CurriedFn1
namespace getMinutes {}
const getMinutesWithOptions: CurriedFn2
namespace getMinutesWithOptions {}
const getMonth: CurriedFn1
namespace getMonth {}
const getMonthWithOptions: CurriedFn2
namespace getMonthWithOptions {}
const getOverlappingDaysInIntervals: CurriedFn2
namespace getOverlappingDaysInIntervals {}
const getOverlappingDaysInIntervalsWithOptions: CurriedFn3
namespace getOverlappingDaysInIntervalsWithOptions {}
const getQuarter: CurriedFn1
namespace getQuarter {}
const getQuarterWithOptions: CurriedFn2
namespace getQuarterWithOptions {}
const getSeconds: CurriedFn1
namespace getSeconds {}
const getSecondsWithOptions: CurriedFn2
namespace getSecondsWithOptions {}
const getTime: CurriedFn1
namespace getTime {}
const getTimeWithOptions: CurriedFn2
namespace getTimeWithOptions {}
const getYear: CurriedFn1
namespace getYear {}
const getYearWithOptions: CurriedFn2
namespace getYearWithOptions {}
const isAfter: CurriedFn2
namespace isAfter {}
const isAfterWithOptions: CurriedFn3
namespace isAfterWithOptions {}
const isBefore: CurriedFn2
namespace isBefore {}
const isBeforeWithOptions: CurriedFn3
namespace isBeforeWithOptions {}
const isEqual: CurriedFn2
namespace isEqual {}
const isEqualWithOptions: CurriedFn3
namespace isEqualWithOptions {}
const isFirstDayOfMonth: CurriedFn1
namespace isFirstDayOfMonth {}
const isFirstDayOfMonthWithOptions: CurriedFn2
namespace isFirstDayOfMonthWithOptions {}
const isFriday: CurriedFn1
namespace isFriday {}
const isFridayWithOptions: CurriedFn2
namespace isFridayWithOptions {}
const isLastDayOfMonth: CurriedFn1
namespace isLastDayOfMonth {}
const isLastDayOfMonthWithOptions: CurriedFn2
namespace isLastDayOfMonthWithOptions {}
const isLeapYear: CurriedFn1
namespace isLeapYear {}
const isLeapYearWithOptions: CurriedFn2
namespace isLeapYearWithOptions {}
const isMonday: CurriedFn1
namespace isMonday {}
const isMondayWithOptions: CurriedFn2
namespace isMondayWithOptions {}
const isSameDay: CurriedFn2
namespace isSameDay {}
const isSameDayWithOptions: CurriedFn3
namespace isSameDayWithOptions {}
const isSameHour: CurriedFn2
namespace isSameHour {}
const isSameHourWithOptions: CurriedFn3
namespace isSameHourWithOptions {}
const isSameISOWeek: CurriedFn2
namespace isSameISOWeek {}
const isSameISOWeekWithOptions: CurriedFn3
namespace isSameISOWeekWithOptions {}
const isSameISOYear: CurriedFn2
namespace isSameISOYear {}
const isSameISOYearWithOptions: CurriedFn3
namespace isSameISOYearWithOptions {}
const isSameMinute: CurriedFn2
namespace isSameMinute {}
const isSameMinuteWithOptions: CurriedFn3
namespace isSameMinuteWithOptions {}
const isSameMonth: CurriedFn2
namespace isSameMonth {}
const isSameMonthWithOptions: CurriedFn3
namespace isSameMonthWithOptions {}
const isSameQuarter: CurriedFn2
namespace isSameQuarter {}
const isSameQuarterWithOptions: CurriedFn3
namespace isSameQuarterWithOptions {}
const isSameSecond: CurriedFn2
namespace isSameSecond {}
const isSameSecondWithOptions: CurriedFn3
namespace isSameSecondWithOptions {}
const isSameWeek: CurriedFn2
namespace isSameWeek {}
const isSameWeekWithOptions: CurriedFn3
namespace isSameWeekWithOptions {}
const isSameYear: CurriedFn2
namespace isSameYear {}
const isSameYearWithOptions: CurriedFn3
namespace isSameYearWithOptions {}
const isSaturday: CurriedFn1
namespace isSaturday {}
const isSaturdayWithOptions: CurriedFn2
namespace isSaturdayWithOptions {}
const isSunday: CurriedFn1
namespace isSunday {}
const isSundayWithOptions: CurriedFn2
namespace isSundayWithOptions {}
const isThursday: CurriedFn1
namespace isThursday {}
const isThursdayWithOptions: CurriedFn2
namespace isThursdayWithOptions {}
const isTuesday: CurriedFn1
namespace isTuesday {}
const isTuesdayWithOptions: CurriedFn2
namespace isTuesdayWithOptions {}
const isValid: CurriedFn1
namespace isValid {}
const isValidWithOptions: CurriedFn2
namespace isValidWithOptions {}
const isWednesday: CurriedFn1
namespace isWednesday {}
const isWednesdayWithOptions: CurriedFn2
namespace isWednesdayWithOptions {}
const isWeekend: CurriedFn1
namespace isWeekend {}
const isWeekendWithOptions: CurriedFn2
namespace isWeekendWithOptions {}
const isWithinInterval: CurriedFn2
namespace isWithinInterval {}
const isWithinIntervalWithOptions: CurriedFn3
namespace isWithinIntervalWithOptions {}
const lastDayOfISOWeek: CurriedFn1
namespace lastDayOfISOWeek {}
const lastDayOfISOWeekWithOptions: CurriedFn2
namespace lastDayOfISOWeekWithOptions {}
const lastDayOfISOYear: CurriedFn1
namespace lastDayOfISOYear {}
const lastDayOfISOYearWithOptions: CurriedFn2
namespace lastDayOfISOYearWithOptions {}
const lastDayOfMonth: CurriedFn1
namespace lastDayOfMonth {}
const lastDayOfMonthWithOptions: CurriedFn2
namespace lastDayOfMonthWithOptions {}
const lastDayOfQuarter: CurriedFn1
namespace lastDayOfQuarter {}
const lastDayOfQuarterWithOptions: CurriedFn2
namespace lastDayOfQuarterWithOptions {}
const lastDayOfWeek: CurriedFn1
namespace lastDayOfWeek {}
const lastDayOfWeekWithOptions: CurriedFn2
namespace lastDayOfWeekWithOptions {}
const lastDayOfYear: CurriedFn1
namespace lastDayOfYear {}
const lastDayOfYearWithOptions: CurriedFn2
namespace lastDayOfYearWithOptions {}
const max: CurriedFn1<(Date | string | number)[], Date>
namespace max {}
const maxWithOptions: CurriedFn2
namespace maxWithOptions {}
const min: CurriedFn1<(Date | string | number)[], Date>
namespace min {}
const minWithOptions: CurriedFn2
namespace minWithOptions {}
const parse: CurriedFn3
namespace parse {}
const parseWithOptions: CurriedFn4
namespace parseWithOptions {}
const setDate: CurriedFn2
namespace setDate {}
const setDateWithOptions: CurriedFn3
namespace setDateWithOptions {}
const setDay: CurriedFn2
namespace setDay {}
const setDayOfYear: CurriedFn2
namespace setDayOfYear {}
const setDayOfYearWithOptions: CurriedFn3
namespace setDayOfYearWithOptions {}
const setDayWithOptions: CurriedFn3
namespace setDayWithOptions {}
const setHours: CurriedFn2
namespace setHours {}
const setHoursWithOptions: CurriedFn3
namespace setHoursWithOptions {}
const setISODay: CurriedFn2
namespace setISODay {}
const setISODayWithOptions: CurriedFn3
namespace setISODayWithOptions {}
const setISOWeek: CurriedFn2
namespace setISOWeek {}
const setISOWeekWithOptions: CurriedFn3
namespace setISOWeekWithOptions {}
const setISOYear: CurriedFn2
namespace setISOYear {}
const setISOYearWithOptions: CurriedFn3
namespace setISOYearWithOptions {}
const setMilliseconds: CurriedFn2
namespace setMilliseconds {}
const setMillisecondsWithOptions: CurriedFn3
namespace setMillisecondsWithOptions {}
const setMinutes: CurriedFn2
namespace setMinutes {}
const setMinutesWithOptions: CurriedFn3
namespace setMinutesWithOptions {}
const setMonth: CurriedFn2
namespace setMonth {}
const setMonthWithOptions: CurriedFn3
namespace setMonthWithOptions {}
const setQuarter: CurriedFn2
namespace setQuarter {}
const setQuarterWithOptions: CurriedFn3
namespace setQuarterWithOptions {}
const setSeconds: CurriedFn2
namespace setSeconds {}
const setSecondsWithOptions: CurriedFn3
namespace setSecondsWithOptions {}
const setYear: CurriedFn2
namespace setYear {}
const setYearWithOptions: CurriedFn3
namespace setYearWithOptions {}
const startOfDay: CurriedFn1
namespace startOfDay {}
const startOfDayWithOptions: CurriedFn2
namespace startOfDayWithOptions {}
const startOfHour: CurriedFn1
namespace startOfHour {}
const startOfHourWithOptions: CurriedFn2
namespace startOfHourWithOptions {}
const startOfISOWeek: CurriedFn1
namespace startOfISOWeek {}
const startOfISOWeekWithOptions: CurriedFn2
namespace startOfISOWeekWithOptions {}
const startOfISOYear: CurriedFn1
namespace startOfISOYear {}
const startOfISOYearWithOptions: CurriedFn2
namespace startOfISOYearWithOptions {}
const startOfMinute: CurriedFn1
namespace startOfMinute {}
const startOfMinuteWithOptions: CurriedFn2
namespace startOfMinuteWithOptions {}
const startOfMonth: CurriedFn1
namespace startOfMonth {}
const startOfMonthWithOptions: CurriedFn2
namespace startOfMonthWithOptions {}
const startOfQuarter: CurriedFn1
namespace startOfQuarter {}
const startOfQuarterWithOptions: CurriedFn2
namespace startOfQuarterWithOptions {}
const startOfSecond: CurriedFn1
namespace startOfSecond {}
const startOfSecondWithOptions: CurriedFn2
namespace startOfSecondWithOptions {}
const startOfWeek: CurriedFn1
namespace startOfWeek {}
const startOfWeekWithOptions: CurriedFn2
namespace startOfWeekWithOptions {}
const startOfYear: CurriedFn1
namespace startOfYear {}
const startOfYearWithOptions: CurriedFn2