vue-svg-map
Version:
A set of Vue 3 components to display an interactive SVG map
24 lines (23 loc) • 925 B
TypeScript
import type { Map } from '../types';
type __VLS_Props = {
map: Map;
};
type __VLS_PublicProps = __VLS_Props & {
modelValue?: string[];
};
declare var __VLS_10: string | number, __VLS_11: any;
type __VLS_Slots = {} & {
[K in NonNullable<typeof __VLS_10>]?: (props: typeof __VLS_11) => any;
};
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:modelValue": (value: string[]) => any;
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
"onUpdate:modelValue"?: (value: string[]) => any;
}>, {}, {}, {}, {}, 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;
};
};