UNPKG

geos.js

Version:

an easy-to-use JavaScript wrapper over WebAssembly build of GEOS

13 lines (6 loc) 212 B
import { GeometryRef } from '../Geometry.mjs'; export interface CompoundCurve<P = unknown> extends GeometryRef<P> { readonly type: 'CompoundCurve', toJSON(): never; clone(): CompoundCurve<P>; }