From 8cb296f9d82ed123656f9c3fd1c0b48c8cdec771 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 29 May 2019 14:07:43 +0300 Subject: [PATCH] Created SplitButton.d.ts --- src/components/splitbutton/SplitButton.d.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/components/splitbutton/SplitButton.d.ts diff --git a/src/components/splitbutton/SplitButton.d.ts b/src/components/splitbutton/SplitButton.d.ts new file mode 100644 index 000000000..c3847b02a --- /dev/null +++ b/src/components/splitbutton/SplitButton.d.ts @@ -0,0 +1,12 @@ +import Vue from 'vue'; + +export declare class SplitButton extends Vue { + label?: string; + icon?: string; + model?: any[]; + disabled?: boolean; + tabindex?: string; + autoZIndex?: boolean; + baseZIndex?: number; + $emit(eventName: 'click', event: Event): this; +} \ No newline at end of file