node-red-contrib-tak-registration
Version:
A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK
16 lines (13 loc) • 362 B
TypeScript
import { LineString, MultiLineString, Feature } from 'geojson';
import { Units } from '@turf/helpers';
/**
* http://turfjs.org/docs/#lineoffset
*/
declare function lineOffset<T extends LineString | MultiLineString>(
line: Feature<T> | T,
distance: number,
options?: {
units?: Units;
}
): Feature<T>;
export { lineOffset as default, lineOffset };