Interface MessageFromReport<T>

Interface for messages received from the report

interface MessageFromReport {
    action: string;
    id?: string;
    params?: T;
}

Type Parameters

  • T

Properties

Properties

action: string

Action to be executed by the parent

id?: string

Unique identifier

params?: T

Parameters for the action

Generated using TypeDoc