📄 buildFormatLongFn.d.cts
/home/palash/git/site/node_modules/date-fns/locale/_lib/buildFormatLongFn.d.cts
Language: cts • Lines: 14
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;