UNPKG

geos.js

Version:

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

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