primevue
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevue)
18 lines (16 loc) • 580 B
TypeScript
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;