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