UNPKG

@abaplint/runtime

Version:
17 lines (16 loc) 428 B
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>; }