Files
2026-06-10 12:14:46 -03:00

15 lines
464 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;