Type file for ColorPicker

pull/146/head
cagataycivici 2020-01-13 11:45:52 +03:00
parent 5c3fe243c3
commit 11ff9e7a5c
1 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,13 @@
import Vue, { VNode } from 'vue';
export declare class ColorPicker extends Vue {
value: any;
value?: any;
defaultColor?: any;
inline?: boolean;
format?: string;
disabled?: boolean;
tabindex?: string;
autoZIndex?: boolean;
baseZIndex?: number;
$emit(eventName: 'input', value: any): this;
}