mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 09:08:03 +00:00
10 lines
230 B
TypeScript
10 lines
230 B
TypeScript
/**
|
|
* Get the decimal and thousand separator of a locale
|
|
* @param locale
|
|
* @returns {decimal: string, thousand: string}
|
|
*/
|
|
export declare function getSeparator(locale?: string): {
|
|
thousand: string;
|
|
decimal: string;
|
|
};
|