UNPKG

jalhyd

Version:

JaLHyd, a Javascript Library for Hydraulics

21 lines 554 B
import { ParamDefinition } from "../internal_modules"; import { ParamsEquation } from "../internal_modules"; /** * Y = A.X^N */ export declare class YAXNParams extends ParamsEquation { /** Y */ private _Y; /** A */ private _A; /** X */ private _X; /** N */ private _N; constructor(rA: number, rX: number, rN: number, rY?: number, nullParams?: boolean); get Y(): ParamDefinition; get A(): ParamDefinition; get X(): ParamDefinition; get N(): ParamDefinition; } //# sourceMappingURL=yaxn_params.d.ts.map