@alauda-fe/common
Version:
Alauda frontend team common codes.
12 lines (11 loc) • 344 B
TypeScript
/**
* @ngModule CommonModule
*
* Formats a number as text. Group sizing and separator and other locale-specific
* configurations are based on the locale.
*
* Where:
* - `value` is a number.
* - `digitInfo` See {@link DecimalPipe} for more details.
*/
export declare function formatNumber(value: number, digitsInfo?: number[]): string;