UNPKG

@maskito/kit

Version:

The optional framework-agnostic Maskito's package with ready-to-use masks

13 lines 532 B
import type { MaskitoPostprocessor } from '@maskito/core'; /** * It adds symbol for separating thousands. * @example 1000000 => (thousandSeparator is equal to space) => 1 000 000. */ export declare function createThousandSeparatorPostprocessor({ thousandSeparator, decimalSeparator, prefix, postfix, minusSign, }: { thousandSeparator: string; decimalSeparator: string; prefix: string; postfix: string; minusSign: string; }): MaskitoPostprocessor; //# sourceMappingURL=thousand-separator-postprocessor.d.ts.map