Files
Gemini-Search/node_modules/date-fns/locale/_lib/buildFormatLongFn.d.mts
Ammaar Reshi d6025af146 Initial commit
2025-01-04 14:06:53 +00:00

15 lines
464 B
TypeScript

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;