UNPKG

@loaders.gl/wkt

Version:

Loader and Writer for the WKT (Well Known Text) Format

9 lines 456 B
import type { Geometry } from '@loaders.gl/schema'; /** * Check if an array buffer might be a TWKB array buffer * @param arrayBuffer The array buffer to check * @returns false if this is definitely not a TWKB array buffer, true if it might be a TWKB array buffer */ export declare function isTWKB(arrayBuffer: ArrayBuffer): boolean; export declare function parseTWKBGeometry(arrayBuffer: ArrayBuffer): Geometry; //# sourceMappingURL=parse-twkb.d.ts.map