Created Checkbox.d.ts

pull/12/head
mertsincan 2019-05-28 13:43:12 +03:00
parent 3109a59136
commit 1f0ffa5f64
1 changed files with 12 additions and 0 deletions

12
src/components/checkbox/Checkbox.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
import Vue from 'vue';
export declare class Checkbox extends Vue {
value?: null;
modelValue?: null;
binary?: boolean;
$emit(eventName: 'click', event: Event): this;
$emit(eventName: 'input', value: any): this;
$emit(eventName: 'change', event: Event): this;
$emit(eventName: 'focus', event: Event): this;
$emit(eventName: 'blur', event: Event): this;
}