vue3-openlayers
Version:
OpenLayers Wrapper for Vue3
16 lines (15 loc) • 905 B
TypeScript
import { App } from 'vue';
import { default as OlAnimationDrop } from './OlAnimationDrop';
import { default as OlAnimationFade } from './OlAnimationFade';
import { default as OlAnimationPath } from './OlAnimationPath';
import { default as OlAnimationShake } from './OlAnimationShake';
import { default as OlAnimationSlide } from './OlAnimationSlide';
import { default as OlAnimationTeleport } from './OlAnimationTeleport';
import { default as OlAnimationZoom } from './OlAnimationZoom';
import { Vue3OpenlayersGlobalOptions } from '../../types';
declare function install(app: App, options?: Vue3OpenlayersGlobalOptions): void;
declare module "@vue/runtime-core" {
function inject(key: "ol-options"): Vue3OpenlayersGlobalOptions;
}
export default install;
export { install, OlAnimationDrop, OlAnimationFade, OlAnimationPath, OlAnimationShake, OlAnimationSlide, OlAnimationTeleport, OlAnimationZoom, };