Files
crawlab/frontend/crawlab-ui/typings/components/ui/select/InputSelect.vue.d.ts

17 lines
722 B
TypeScript

type __VLS_Props = {
options?: SelectOption[];
placeholder?: string;
};
type __VLS_PublicProps = __VLS_Props & {
modelValue?: string[];
};
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:modelValue": (value: string[]) => any;
} & {
change: (value: string[]) => any;
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
onChange?: ((value: string[]) => any) | undefined;
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;