v1.0 with SW PWA enabled
This commit is contained in:
14
frontend/node_modules/date-fns/locale/_lib/buildFormatLongFn.d.ts
generated
vendored
Normal file
14
frontend/node_modules/date-fns/locale/_lib/buildFormatLongFn.d.ts
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
import type { FormatLongFn, FormatLongWidth } from "../types.js";
|
||||
export interface BuildFormatLongFnArgs<
|
||||
DefaultMatchWidth extends FormatLongWidth,
|
||||
> {
|
||||
formats: Partial<{
|
||||
[format in FormatLongWidth]: string;
|
||||
}> & {
|
||||
[format in DefaultMatchWidth]: string;
|
||||
};
|
||||
defaultWidth: DefaultMatchWidth;
|
||||
}
|
||||
export declare function buildFormatLongFn<
|
||||
DefaultMatchWidth extends FormatLongWidth,
|
||||
>(args: BuildFormatLongFnArgs<DefaultMatchWidth>): FormatLongFn;
|
||||
Reference in New Issue
Block a user