Type alias SDKToPanelMessage

SDKToPanelMessage: {
    msg: "refresh-devtools";
} | {
    docKey: string;
    msg: "doc::available";
} | {
    docKey: string;
    events: TransactionEvent[];
    msg: "doc::sync::full";
} | {
    docKey: string;
    event: TransactionEvent;
    msg: "doc::sync::partial";
}

Definition of all messages the SDK can send to the Devtools panel.

Type declaration

  • msg: "refresh-devtools"

Type declaration

  • docKey: string
  • msg: "doc::available"

Type declaration

Type declaration