UNPKG

well-known-parser

Version:

A WKT/WKB/EWKT/EWKB/TWKB/GeoJSON parser and serializer

11 lines (10 loc) 762 B
import { BinaryReader } from '../binaryreader'; import { WktParser } from '../wktparser'; import { GeometryOptions } from '../types'; import { MultiLineString } from '../multilinestring'; import { MultiLineString as GeoJSONMultiLineString } from 'geojson'; export declare function parseMultiLineStringWkt(value: WktParser, options: GeometryOptions): MultiLineString; export declare function parseMultiLineStringWkb(value: BinaryReader, options: GeometryOptions): MultiLineString; export declare function parseMultiLineStringTwkb(value: BinaryReader, options: GeometryOptions): MultiLineString; export declare function parseMultiLineStringGeoJSON(value: Pick<GeoJSONMultiLineString, 'coordinates'>): MultiLineString; //# sourceMappingURL=multilinestring.d.ts.map