UNPKG

vue3-openlayers

Version:
16 lines (14 loc) 747 B
import { App } from 'vue'; import { default as OlFeature } from './OlFeature.vue'; import { default as OlGeolocation } from './OlGeolocation.vue'; import { default as OlMap } from './OlMap.vue'; import { default as OlOverlay } from './OlOverlay.vue'; import { default as OlProjectionRegister } from './OlProjectionRegister.vue'; import { default as OlView } from './OlView.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, OlFeature, OlGeolocation, OlMap, OlOverlay, OlProjectionRegister, OlView, };