Created Paginator.d.ts

pull/12/head
mertsincan 2019-05-29 12:56:47 +03:00
parent 1bc111d5e1
commit 792d67bdc8
1 changed files with 14 additions and 0 deletions

14
src/components/password/Password.d.ts vendored Normal file
View File

@ -0,0 +1,14 @@
import Vue from 'vue';
export declare class Password extends Vue {
value?: string;
promptLabel?: string;
weakLabel?: string;
mediumLabel?: string;
strongLabel?: string;
feedback?: boolean;
$emit(eventName: 'input', value: any): this;
$emit(eventName: 'focus', event: Event): this;
$emit(eventName: 'blur', event: Event): this;
$emit(eventName: 'keydown', event: Event): this;
}