Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
4
VApp/node_modules/date-fns/fp/formatDurationWithOptions/index.d.ts
generated
vendored
Normal file
4
VApp/node_modules/date-fns/fp/formatDurationWithOptions/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 { formatDurationWithOptions } from 'date-fns/fp'
|
||||
export default formatDurationWithOptions
|
13
VApp/node_modules/date-fns/fp/formatDurationWithOptions/index.js
generated
vendored
Normal file
13
VApp/node_modules/date-fns/fp/formatDurationWithOptions/index.js
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
var _index = _interopRequireDefault(require("../../formatDuration/index.js"));
|
||||
var _index2 = _interopRequireDefault(require("../_lib/convertToFP/index.js"));
|
||||
// This file is generated automatically by `scripts/build/fp.ts`. Please, don't change it.
|
||||
var _default = (0, _index2.default)(_index.default, 2);
|
||||
exports.default = _default;
|
||||
module.exports = exports.default;
|
67
VApp/node_modules/date-fns/fp/formatDurationWithOptions/index.js.flow
generated
vendored
Normal file
67
VApp/node_modules/date-fns/fp/formatDurationWithOptions/index.js.flow
generated
vendored
Normal file
@ -0,0 +1,67 @@
|
||||
// @flow
|
||||
// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it.
|
||||
|
||||
export type Interval = {
|
||||
start: Date | number,
|
||||
end: Date | number,
|
||||
}
|
||||
|
||||
export type Locale = {
|
||||
code?: string,
|
||||
formatDistance?: (...args: Array<any>) => any,
|
||||
formatRelative?: (...args: Array<any>) => any,
|
||||
localize?: {
|
||||
ordinalNumber: (...args: Array<any>) => any,
|
||||
era: (...args: Array<any>) => any,
|
||||
quarter: (...args: Array<any>) => any,
|
||||
month: (...args: Array<any>) => any,
|
||||
day: (...args: Array<any>) => any,
|
||||
dayPeriod: (...args: Array<any>) => any,
|
||||
},
|
||||
formatLong?: {
|
||||
date: (...args: Array<any>) => any,
|
||||
time: (...args: Array<any>) => any,
|
||||
dateTime: (...args: Array<any>) => any,
|
||||
},
|
||||
match?: {
|
||||
ordinalNumber: (...args: Array<any>) => any,
|
||||
era: (...args: Array<any>) => any,
|
||||
quarter: (...args: Array<any>) => any,
|
||||
month: (...args: Array<any>) => any,
|
||||
day: (...args: Array<any>) => any,
|
||||
dayPeriod: (...args: Array<any>) => any,
|
||||
},
|
||||
options?: {
|
||||
weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6,
|
||||
firstWeekContainsDate?: 1 | 2 | 3 | 4 | 5 | 6 | 7,
|
||||
},
|
||||
}
|
||||
|
||||
export type Duration = {
|
||||
years?: number,
|
||||
months?: number,
|
||||
weeks?: number,
|
||||
days?: number,
|
||||
hours?: number,
|
||||
minutes?: number,
|
||||
seconds?: number,
|
||||
}
|
||||
|
||||
export type Day = 0 | 1 | 2 | 3 | 4 | 5 | 6
|
||||
|
||||
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)
|
||||
|
||||
declare module.exports: CurriedFn2<
|
||||
{
|
||||
locale?: Locale,
|
||||
delimiter?: string,
|
||||
zero?: boolean,
|
||||
format?: string[],
|
||||
},
|
||||
Duration,
|
||||
string
|
||||
>
|
5
VApp/node_modules/date-fns/fp/formatDurationWithOptions/package.json
generated
vendored
Normal file
5
VApp/node_modules/date-fns/fp/formatDurationWithOptions/package.json
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"sideEffects": false,
|
||||
"module": "../../esm/fp/formatDurationWithOptions/index.js",
|
||||
"typings": "../../typings.d.ts"
|
||||
}
|
Reference in New Issue
Block a user