date-fns
Version:
Modern JavaScript date utility library
16 lines (15 loc) • 500 B
TypeScript
import type { FormatLongFn, FormatLongWidth } from "../types.ts";
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;
//# sourceMappingURL=index.d.ts.map