UNPKG

vue3-openlayers

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