@prefecthq/prefect-design
Version:
A collection of low-level Vue components.
31 lines (30 loc) • 1.29 kB
TypeScript
type __VLS_Props = {
modelValue: string | null | undefined;
disabled?: boolean;
openOnFocus?: boolean;
options: string[];
};
declare var __VLS_23: string | number, __VLS_24: any, __VLS_36: string | number, __VLS_37: any;
type __VLS_Slots = {} & {
[K in NonNullable<typeof __VLS_23>]?: (props: typeof __VLS_24) => any;
} & {
[K in NonNullable<typeof __VLS_36>]?: (props: typeof __VLS_37) => any;
};
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:modelValue": (value: string | null) => void;
selected: (value: string | null) => void;
close: () => void;
open: () => void;
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
onClose?: (() => any) | undefined;
onOpen?: (() => any) | undefined;
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
onSelected?: ((value: string | null) => any) | undefined;
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};