/** * Function that calculates the integral of the line between two * x-coordinates, given the slope and intercept of the line. * @param x0 * @param x1 * @param slope * @param intercept * @returns integral value. */ export default function integral( /** first coordinate of point */ x0: number, /** second coordinate of point */ x1: number, /** slope of the line */ slope: number, /** intercept of the line on the y axis */ intercept: number): number; //# sourceMappingURL=integral.d.ts.map