UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

8 lines (7 loc) 266 B
/** * Expects that testValue is equal to expectedValue or optionally within percentage (defaults to .01 or 1%) */ export declare const testWithinPerc: (testValue: number, expectedValue: number, options?: { withinPerc?: number; debug?: boolean; }) => void;