@abaplint/runtime
Version:
Transpiler - Runtime
17 lines (16 loc) • 428 B
TypeScript
import { Context } from "../context";
export interface ICallFunctionOptions {
name: string;
destination?: string;
calling?: (INPUT: any) => any;
exporting?: any;
importing?: any;
tables?: any;
changing?: any;
exceptions?: any;
}
export declare class CallFunction {
private readonly context;
constructor(context: Context);
callFunction(options: ICallFunctionOptions): Promise<void>;
}