From d55b767039605256c736166a942a9138e3eacfd7 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Sun, 29 Jun 2025 11:49:28 -0700 Subject: remove dev node_modules (oops) --- .../fp/formatDurationWithOptions/index.js.flow | 67 ---------------------- 1 file changed, 67 deletions(-) delete mode 100644 node_modules/date-fns/fp/formatDurationWithOptions/index.js.flow (limited to 'node_modules/date-fns/fp/formatDurationWithOptions/index.js.flow') diff --git a/node_modules/date-fns/fp/formatDurationWithOptions/index.js.flow b/node_modules/date-fns/fp/formatDurationWithOptions/index.js.flow deleted file mode 100644 index 72f2910..0000000 --- a/node_modules/date-fns/fp/formatDurationWithOptions/index.js.flow +++ /dev/null @@ -1,67 +0,0 @@ -// @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, - formatRelative?: (...args: Array) => any, - localize?: { - ordinalNumber: (...args: Array) => any, - era: (...args: Array) => any, - quarter: (...args: Array) => any, - month: (...args: Array) => any, - day: (...args: Array) => any, - dayPeriod: (...args: Array) => any, - }, - formatLong?: { - date: (...args: Array) => any, - time: (...args: Array) => any, - dateTime: (...args: Array) => any, - }, - match?: { - ordinalNumber: (...args: Array) => any, - era: (...args: Array) => any, - quarter: (...args: Array) => any, - month: (...args: Array) => any, - day: (...args: Array) => any, - dayPeriod: (...args: Array) => 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: A) => R - -type CurriedFn2 = ( - a: A -) => CurriedFn1 | ((a: A, b: B) => R) - -declare module.exports: CurriedFn2< - { - locale?: Locale, - delimiter?: string, - zero?: boolean, - format?: string[], - }, - Duration, - string -> -- cgit v1.2.3