UNPKG

gis-tools-ts

Version:

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.

9 lines 431 B
import type { MValue, Properties, VectorLineString } from '../../../index.js'; /** * Check if two XY(Z) LineStrings are equal * @param a - The first XY(Z) LineString * @param b - The second XY(Z) LineString * @returns - True if the two XY(Z) LineStrings are equal */ export declare function equalLines<D extends MValue = Properties>(a: VectorLineString<D>, b: VectorLineString<D>): boolean; //# sourceMappingURL=equal.d.ts.map