@abaplint/runtime
Version:
Transpiler - Runtime
15 lines (14 loc) • 436 B
TypeScript
import { INumeric } from "../types/_numeric";
import { Float } from "../types";
export interface INminInput {
val1: number | INumeric;
val2: number | INumeric;
val3?: number | INumeric;
val4?: number | INumeric;
val5?: number | INumeric;
val6?: number | INumeric;
val7?: number | INumeric;
val8?: number | INumeric;
val9?: number | INumeric;
}
export declare function nmin(input: INminInput): Float;