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)

18 lines (16 loc) 580 B
import Vue, { VNode } from 'vue'; declare class InputMask extends Vue { modelValue?: string; slotChar?: string; mask?: string; autoClear?: boolean; unmask?: boolean; $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;