UNPKG

@maskito/kit

Version:

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

12 lines 486 B
import type { MaskitoPostprocessor } from '@maskito/core'; /** * This postprocessor is connected with {@link createMinMaxPlugin}: * both validate `min`/`max` bounds of entered value (but at the different point of time). */ export declare function createMinMaxPostprocessor({ min, max, decimalSeparator, minusSign, }: { min: number; max: number; decimalSeparator: string; minusSign: string; }): MaskitoPostprocessor; //# sourceMappingURL=min-max-postprocessor.d.ts.map