frontend/.pnpm-store/v3/files/b7/82d98d787e8980bd49b10f55075e1366d7560d4db6ce3abff2a822c8758b3927bd6d8db18f8f184fc19f3dbeea58ebfda15b08cf9606751fb60be105c7316a-exec

13 lines
831 B
Plaintext
Executable File

import { NumberFormatInternal, NumberFormatOptions, NumberFormatLocaleInternalData } from '../types/number';
/**
* https://tc39.es/ecma402/#sec-initializenumberformat
*/
export declare function InitializeNumberFormat(nf: Intl.NumberFormat, locales: string | ReadonlyArray<string> | undefined, opts: NumberFormatOptions | undefined, { getInternalSlots, localeData, availableLocales, numberingSystemNames, getDefaultLocale, currencyDigitsData, }: {
getInternalSlots(nf: Intl.NumberFormat): NumberFormatInternal;
localeData: Record<string, NumberFormatLocaleInternalData | undefined>;
availableLocales: Set<string>;
numberingSystemNames: ReadonlyArray<string>;
getDefaultLocale(): string;
currencyDigitsData: Record<string, number>;
}): Intl.NumberFormat;
//# sourceMappingURL=InitializeNumberFormat.d.ts.map