diff --git a/src/components/selectbutton/SelectButton.d.ts b/src/components/selectbutton/SelectButton.d.ts new file mode 100644 index 000000000..95dcb846f --- /dev/null +++ b/src/components/selectbutton/SelectButton.d.ts @@ -0,0 +1,18 @@ +import Vue, { VNode } from 'vue'; + +export declare class SelectButton extends Vue { + value?: any; + options?: any[]; + optionLabel?: string; + optionValue?: any; + optionDisabled?: boolean; + multiple?: boolean; + disabled?: boolean; + dataKey?: string; + $emit(eventName: 'input', value: any): this; + $emit(eventName: 'focus', event: Event): this; + $emit(eventName: 'blur', event: Event): this; + $slots: { + option: VNode[]; + } +} \ No newline at end of file