geos.js
Version:
an easy-to-use JavaScript wrapper over WebAssembly build of GEOS
14 lines (7 loc) • 315 B
text/typescript
import type { JSON_CircularString, JSON_Feature } from './JSON.mjs';
import { GeometryRef } from '../Geometry.mjs';
export interface CircularString<P = unknown> extends GeometryRef<P> {
readonly type: 'CircularString',
toJSON(): JSON_Feature<JSON_CircularString, P>;
clone(): CircularString<P>;
}