UNPKG

230 BTypeScriptView Raw
1/**
2 * Get the decimal and thousand separator of a locale
3 * @param locale
4 * @returns {decimal: string, thousand: string}
5 */
6export declare function getSeparator(locale?: string): {
7 thousand: string;
8 decimal: string;
9};