Created Listbox.d.ts

pull/12/head
mertsincan 2019-05-29 12:08:24 +03:00
parent 5ea0cfce34
commit 1bee06f912
1 changed files with 20 additions and 0 deletions

20
src/components/listbox/Listbox.d.ts vendored Normal file
View File

@ -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[];
}
}