Start message programmatically
tip
You can find the MESSAGE_ID in the Manual section of the message editor, or in the URL after /messages/.
import { Screeb } from "@screeb/sdk-angular";
constructor(private screeb: Screeb) {}
await this.screeb.messageStart("<MESSAGE_ID>");
Prevent multiple displays
await this.screeb.messageStart("<MESSAGE_ID>", false);
Close a message
await this.screeb.messageClose();