mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 10:17:57 +00:00
6 lines
190 B
TypeScript
6 lines
190 B
TypeScript
/**
|
|
* @name formatDecimal
|
|
* @description Formats a number into string format with thousand separators
|
|
*/
|
|
export declare function formatDecimal(value: string, separator?: string): string;
|