From 1bee06f912f4cef184bc56d3e04fdb224fcaaef8 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 29 May 2019 12:08:24 +0300 Subject: [PATCH] Created Listbox.d.ts --- src/components/listbox/Listbox.d.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/components/listbox/Listbox.d.ts diff --git a/src/components/listbox/Listbox.d.ts b/src/components/listbox/Listbox.d.ts new file mode 100644 index 000000000..2891b2331 --- /dev/null +++ b/src/components/listbox/Listbox.d.ts @@ -0,0 +1,20 @@ +import Vue, { VNode } from 'vue'; + +export declare class Listbox extends Vue { + value?: any; + options?: any[]; + optionLabel?: string; + optionValue?: any; + optionDisabled?: boolean; + listStyle?: string; + disabled?: boolean; + dataKey?: string; + multiple?: boolean; + metaKeySelection?: boolean; + filter?: boolean; + $emit(eventName: 'input', value: any): this; + $emit(eventName: 'change', e: { originalEvent: Event, value: any }): this; + $slots: { + option: VNode[]; + } +} \ No newline at end of file