9 lines
401 B
TypeScript
9 lines
401 B
TypeScript
import Decimal from 'decimal.js';
|
|
import { NumberFormatInternal, NumberRangeToParts } from '../types/number';
|
|
/**
|
|
* https://tc39.es/ecma402/#sec-formatnumericrangetoparts
|
|
*/
|
|
export declare function FormatNumericRangeToParts(numberFormat: Intl.NumberFormat, x: Decimal, y: Decimal, { getInternalSlots, }: {
|
|
getInternalSlots(nf: Intl.NumberFormat): NumberFormatInternal;
|
|
}): NumberRangeToParts[];
|