UNPKG

@abaplint/runtime

Version:
18 lines (17 loc) 583 B
import { Context } from "../context"; import { ABAPObject, String } from "../types"; import { ICharacter } from "../types/_character"; export interface IMessageOptions { id?: ICharacter | string; number?: ICharacter | string; type?: ICharacter | string; displayLike?: ICharacter | string; exceptionOrText?: ABAPObject | ICharacter | String; with?: (ICharacter | string)[]; into?: ICharacter; } export declare class MessageStatement { private readonly context; constructor(context: Context); message(options: IMessageOptions): Promise<void>; }