UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

21 lines (18 loc) 592 B
interface InputMaskProps { modelValue?: string; slotChar?: string; mask?: string; autoClear?: boolean; unmask?: boolean; } declare class InputMask { $props: InputMaskProps; $emit(eventName: 'input', value: string): this; $emit(eventName: 'focus', event: Event): this; $emit(eventName: 'blur', event: Event): this; $emit(eventName: 'keydown', event: Event): this; $emit(eventName: 'keypress', event: Event): this; $emit(eventName: 'paste', event: Event): this; $emit(eventName: 'complete', event: Event): this; } export default InputMask;