frontend/.pnpm-store/v3/files/6a/332e481ffa59da62b19e8e32edef4ba69f76ae29bfc5f3af37ff50ea1bbeb893cda9d6cdae778bbc6704a7acf273d0e4c8955f361343d699874f97f55fef88-exec

12 lines
591 B
Plaintext
Executable File

import { NumberFormatInternal } from '../types/number';
/**
* The abstract operation ComputeExponent computes an exponent (power of ten) by which to scale x
* according to the number formatting settings. It handles cases such as 999 rounding up to 1000,
* requiring a different exponent.
*
* NOT IN SPEC: it returns [exponent, magnitude].
*/
export declare function ComputeExponent(numberFormat: Intl.NumberFormat, x: number, { getInternalSlots, }: {
getInternalSlots(nf: Intl.NumberFormat): NumberFormatInternal;
}): [number, number];
//# sourceMappingURL=ComputeExponent.d.ts.map