UNPKG

date-fns-tz

Version:

Time zone support for date-fns v2 with the Intl API

22 lines (17 loc) 644 B
// @flow // This file is generated automatically by `scripts/build/typings.js`. Please, don't change it. import type { Locale } from 'date-fns' type OptionsWithTZ = { weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6, firstWeekContainsDate?: 1 | 2 | 3 | 4 | 5 | 6 | 7, additionalDigits?: 0 | 1 | 2, timeZone?: string, locale?: Locale, includeSeconds?: boolean, addSuffix?: boolean, unit?: 'second' | 'minute' | 'hour' | 'day' | 'month' | 'year', roundingMethod?: 'floor' | 'ceil' | 'round', awareOfUnicodeTokens?: boolean, } type CurriedFn1<A, R> = <A>(a: A) => R declare module.exports: CurriedFn1<Date | string | number, Date>