mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-28 17:50:56 +01:00
17 lines
722 B
TypeScript
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;
|