forked from MelihAltintas/vue3-openlayers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
22 lines (20 loc) · 980 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
declare module 'vue3-openlayers' {
import {App} from 'vue';
import feature from 'ol/Feature';
import * as geom from 'ol/geom/';
import * as format from 'ol/format';
import * as loadingstrategy from 'ol/loadingstrategy';
import * as selectconditions from 'ol/events/condition';
import * as extent from 'ol/extent';
import * as animations from 'ol/easing';
module '@vue/runtime-core' {
export declare function inject(key: 'ol-feature'): typeof feature
export declare function inject(key: 'ol-geom'): typeof geom
export declare function inject(key: 'ol-animations'): typeof animations
export declare function inject(key: 'ol-format'): typeof format
export declare function inject(key: 'ol-loadingstrategy'): typeof loadingstrategy
export declare function inject(key: 'ol-selectconditions'): typeof selectconditions
export declare function inject(key: 'ol-extent'): typeof extent
}
export default function install(app: App): void
}