@maskito/kit
Version:
The optional framework-agnostic Maskito's package with ready-to-use masks
12 lines • 442 B
TypeScript
import type { MaskitoPlugin } from '@maskito/core';
/**
* It pads EMPTY integer part with zero if decimal parts exists.
* It works on blur event only!
* @example 1|,23 => Backspace => Blur => 0,23
*/
export declare function createNotEmptyIntegerPlugin({ decimalSeparator, prefix, postfix, }: {
decimalSeparator: string;
prefix: string;
postfix: string;
}): MaskitoPlugin;
//# sourceMappingURL=not-empty-integer.plugin.d.ts.map