From 9a4b95534d71726e81bf0efecc09e852d5cbd8cc Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 29 May 2019 11:59:16 +0300 Subject: [PATCH] Created InputSwitch.d.ts --- src/components/inputswitch/InputSwitch.d.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/components/inputswitch/InputSwitch.d.ts diff --git a/src/components/inputswitch/InputSwitch.d.ts b/src/components/inputswitch/InputSwitch.d.ts new file mode 100644 index 000000000..c76cc9a4a --- /dev/null +++ b/src/components/inputswitch/InputSwitch.d.ts @@ -0,0 +1,13 @@ +import Vue from 'vue'; + +export declare class InputSwitch extends Vue { + value?: boolean; + inputId?: string; + name?: string; + disabled?: 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; +} \ No newline at end of file