UNPKG

vue-yandex-maps

Version:
50 lines (49 loc) 1.89 kB
import { PropType, SlotsType } from 'vue'; import { YMapDefaultMarker, YMapDefaultMarkerProps } from '@yandex/ymaps3-default-ui-theme'; type Settings = ConstructorParameters<typeof YMapDefaultMarker>[0]; export type YandexMapDefaultMarkerSettings = Omit<Settings, 'popup'> & { popup?: Omit<NonNullable<YMapDefaultMarkerProps['popup']>, 'content'> & { content?: NonNullable<YMapDefaultMarkerProps['popup']>['content']; }; }; declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ value: { type: PropType<YMapDefaultMarker | null>; default: null; }; modelValue: { type: PropType<YMapDefaultMarker | null>; default: null; }; settings: { type: PropType<YandexMapDefaultMarkerSettings>; required: true; }; }>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, { [key: string]: any; }> | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { input(item: YMapDefaultMarker): boolean; 'update:modelValue'(item: YMapDefaultMarker): boolean; }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{ value: { type: PropType<YMapDefaultMarker | null>; default: null; }; modelValue: { type: PropType<YMapDefaultMarker | null>; default: null; }; settings: { type: PropType<YandexMapDefaultMarkerSettings>; required: true; }; }>> & Readonly<{ onInput?: ((item: YMapDefaultMarker) => any) | undefined; "onUpdate:modelValue"?: ((item: YMapDefaultMarker) => any) | undefined; }>, { value: YMapDefaultMarker | null; modelValue: YMapDefaultMarker | null; }, SlotsType<{ popup: {}; }>, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export default _default;