first commit
This commit is contained in:
commit
eb2f504652
32490 changed files with 5731109 additions and 0 deletions
4
node_modules/date-fns-tz/fp/formatInTimeZoneWithOptions/index.d.ts
generated
vendored
Normal file
4
node_modules/date-fns-tz/fp/formatInTimeZoneWithOptions/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it.
|
||||
|
||||
import { formatInTimeZoneWithOptions } from 'date-fns-tz/fp'
|
||||
export = formatInTimeZoneWithOptions
|
||||
18
node_modules/date-fns-tz/fp/formatInTimeZoneWithOptions/index.js
generated
vendored
Normal file
18
node_modules/date-fns-tz/fp/formatInTimeZoneWithOptions/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
var _index = _interopRequireDefault(require("../../formatInTimeZone/index.js"));
|
||||
|
||||
var _index2 = _interopRequireDefault(require("date-fns/fp/_lib/convertToFP/index.js"));
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
// This file is generated automatically by `scripts/build/fp.js`. Please, don't change it.
|
||||
var formatInTimeZoneWithOptions = (0, _index2.default)(_index.default, 4);
|
||||
var _default = formatInTimeZoneWithOptions;
|
||||
exports.default = _default;
|
||||
module.exports = exports.default;
|
||||
44
node_modules/date-fns-tz/fp/formatInTimeZoneWithOptions/index.js.flow
generated
vendored
Normal file
44
node_modules/date-fns-tz/fp/formatInTimeZoneWithOptions/index.js.flow
generated
vendored
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
// @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
|
||||
|
||||
type CurriedFn2<A, B, R> = <A>(a: A) => CurriedFn1<B, R> | (<A, B>(a: A, b: B) => R)
|
||||
|
||||
type CurriedFn3<A, B, C, R> = <A>(
|
||||
a: A
|
||||
) =>
|
||||
| CurriedFn2<B, C, R>
|
||||
| (<A, B>(a: A, b: B) => CurriedFn1<C, R> | (<A, B, C>(a: A, b: B, c: C) => R))
|
||||
|
||||
type CurriedFn4<A, B, C, D, R> = <A>(
|
||||
a: A
|
||||
) =>
|
||||
| CurriedFn3<B, C, D, R>
|
||||
| (<A, B>(
|
||||
a: A,
|
||||
b: B
|
||||
) =>
|
||||
| CurriedFn2<C, D, R>
|
||||
| (<A, B, C>(
|
||||
a: A,
|
||||
b: B,
|
||||
c: C
|
||||
) => CurriedFn1<D, R> | (<A, B, C, D>(a: A, b: B, c: C, d: D) => R)))
|
||||
|
||||
declare module.exports: CurriedFn4<OptionsWithTZ, string, string, Date | string | number, string>
|
||||
6
node_modules/date-fns-tz/fp/formatInTimeZoneWithOptions/package.json
generated
vendored
Normal file
6
node_modules/date-fns-tz/fp/formatInTimeZoneWithOptions/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"sideEffects": false,
|
||||
"type": "commonjs",
|
||||
"module": "../../esm/fp/formatInTimeZoneWithOptions/index.js",
|
||||
"typings": "../../typings.d.ts"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue