UNPKG

@maskito/kit

Version:

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

13 lines 497 B
import type { MaskitoPlugin } from '@maskito/core'; /** * It removes repeated leading zeroes for integer part on blur-event. * @example 000000 => blur => 0 * @example 00005 => blur => 5 */ export declare function createLeadingZeroesValidationPlugin({ decimalSeparator, thousandSeparator, prefix, postfix, }: { decimalSeparator: string; thousandSeparator: string; prefix: string; postfix: string; }): MaskitoPlugin; //# sourceMappingURL=leading-zeroes-validation.plugin.d.ts.map