Files

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;
};