UNPKG

@abaplint/runtime

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