import { MeasurementXY } from 'cheminfo-types'; import { SlopeOptions, SlopeResult } from './types'; interface DiodeResult extends SlopeResult { forwardVoltage?: number; onVoltage?: number; } /** * Calculates the diode on resistance. * @param measurement - The measurement to calculate the diode on resistance. * @param options - Options to calculate the diode on resistance. * @returns - The diode on resistance. */ export declare function diodeOnResistance(measurement: MeasurementXY, options?: SlopeOptions): DiodeResult | null; export {}; //# sourceMappingURL=diodeOnResistance.d.ts.map