/** * When a spectrum is continous ? * - has more than 100 points * - deltaX change can not be more than a factor 2 * - deltaX may not be larger than 0.1 * - if y is zero it does not count * @param {object} spectrum * @param {object} [options={}] * @param {number} [options.minLength=100] * @param {number} [options.relativeHeightThreshold=0.001] // Under this value the * @param {number} [options.maxDeltaRatio=3] */ export function isContinuous(spectrum: object, options?: { minLength?: number | undefined; relativeHeightThreshold?: number | undefined; maxDeltaRatio?: number | undefined; }): any; //# sourceMappingURL=isContinuous.d.ts.map