frontend/.pnpm-store/v3/files/5e/7b1b3b5ecf2b688d3b726f959a5df88fc8209fc125f16189fe40ff548fa559c53e79c089676a65ff645c195d9cb7081e68728a210df5e22c7ac0986b959cdf-exec

10 lines
469 B
Plaintext
Executable File

import { RawNumberFormatResult } from '../types/number';
/**
* TODO: dedup with intl-pluralrules and support BigInt
* https://tc39.es/ecma402/#sec-torawfixed
* @param x a finite non-negative Number or BigInt
* @param minFraction and integer between 0 and 20
* @param maxFraction and integer between 0 and 20
*/
export declare function ToRawFixed(x: number, minFraction: number, maxFraction: number): RawNumberFormatResult;
//# sourceMappingURL=ToRawFixed.d.ts.map