vue-yandex-maps
Version:
Yandex Maps 3.0 components library for VueJS.
48 lines (47 loc) • 1.77 kB
TypeScript
import { PropType, SlotsType } from 'vue';
import { YMapControlButton } from '@yandex/ymaps3-types';
export type YandexMapControlButtonSettings = Omit<ConstructorParameters<typeof YMapControlButton>[0], 'element' | 'text'>;
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
value: {
type: PropType<YMapControlButton | null>;
default: null;
};
modelValue: {
type: PropType<YMapControlButton | null>;
default: null;
};
settings: {
type: PropType<YandexMapControlButtonSettings>;
default: () => {};
};
index: NumberConstructor;
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
[key: string]: any;
}>, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
input(item: YMapControlButton): boolean;
'update:modelValue'(item: YMapControlButton): boolean;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
value: {
type: PropType<YMapControlButton | null>;
default: null;
};
modelValue: {
type: PropType<YMapControlButton | null>;
default: null;
};
settings: {
type: PropType<YandexMapControlButtonSettings>;
default: () => {};
};
index: NumberConstructor;
}>> & Readonly<{
onInput?: ((item: YMapControlButton) => any) | undefined;
"onUpdate:modelValue"?: ((item: YMapControlButton) => any) | undefined;
}>, {
value: YMapControlButton | null;
modelValue: YMapControlButton | null;
settings: YandexMapControlButtonSettings;
}, SlotsType<{
default: {};
}>, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export default _default;