vue3-openlayers
Version:
OpenLayers Wrapper for Vue3
17 lines (15 loc) • 934 B
TypeScript
import { App } from 'vue';
import { default as OlAnimationDrop } from './OlAnimationDrop.vue';
import { default as OlAnimationFade } from './OlAnimationFade.vue';
import { default as OlAnimationPath } from './OlAnimationPath.vue';
import { default as OlAnimationShake } from './OlAnimationShake.vue';
import { default as OlAnimationSlide } from './OlAnimationSlide.vue';
import { default as OlAnimationTeleport } from './OlAnimationTeleport.vue';
import { default as OlAnimationZoom } from './OlAnimationZoom.vue';
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, };