vue3-openlayers
Version:
OpenLayers Wrapper for Vue3
16 lines (15 loc) • 735 B
TypeScript
import { default as Point } from 'ol/geom/Point';
import { TypedClassArgs } from '../../types';
import { DefineComponent, ComputedRef, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { GeometryLayout } from 'ol/geom/Geometry';
type Args = TypedClassArgs<typeof Point, ["coordinates", "layout"]>;
type Props = {
coordinates: Args["coordinates"];
layout?: Args["layout"];
};
declare const _default: DefineComponent<Props, {
geometry: ComputedRef<Point>;
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {
layout: GeometryLayout;
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
export default _default;