UNPKG

@maskito/kit

Version:

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

12 lines 543 B
import type { MaskitoPreprocessor } from '@maskito/core'; /** * It pads integer part with zero if user types decimal separator (for empty input). * @example Empty input => User types "," (decimal separator) => 0,| */ export declare function createNotEmptyIntegerPartPreprocessor({ decimalSeparator, maximumFractionDigits, prefix, postfix, }: { decimalSeparator: string; maximumFractionDigits: number; prefix: string; postfix: string; }): MaskitoPreprocessor; //# sourceMappingURL=not-empty-integer-part-preprocessor.d.ts.map