interface JAppPanelLeaveResponse {
    message: string | JAppRenderableMessage;
    title: string;
}

Properties

Properties

message: string | JAppRenderableMessage

Same contract as confirm-message content:

  • bare string means plain text by default
  • rich HTML must be explicit and sanitized by the renderer
  • JSX / node content is preferred when formatting is needed
title: string