mirror of
https://github.com/chartjs/Chart.js.git
synced 2025-12-08 20:36:08 +00:00
8 lines
313 B
TypeScript
8 lines
313 B
TypeScript
/**
|
|
* Format a number using a localized number formatter.
|
|
* @param num The number to format
|
|
* @param locale The locale to pass to the Intl.NumberFormat constructor
|
|
* @param options Number format options
|
|
*/
|
|
export function formatNumber(num: number, locale: string, options: Intl.NumberFormatOptions): string;
|