@rshaker/communicator
    Preparing search index...

    Interface CommMsg

    interface CommMsg {
        fromContext?: BrowserContextType;
        fromOrigin?: string;
        fromTab?: number;
        hops?: BrowserContextType[];
        id: string;
        log?: boolean;
        payload?: {
            action?: string;
            entry?: any;
            entryId?: string;
            storeName?: string;
        };
        responseId?: string;
        toContext: BrowserContextType;
        toOrigin?: string;
        toTab?: number;
        type: MsgType;
    }
    Index

    Properties

    fromContext?: BrowserContextType
    fromOrigin?: string
    fromTab?: number
    hops?: BrowserContextType[]
    id: string
    log?: boolean
    payload?: { action?: string; entry?: any; entryId?: string; storeName?: string }
    responseId?: string
    toContext: BrowserContextType
    toOrigin?: string
    toTab?: number
    type: MsgType