Shared parameter for cross-instance communication. The host may collect all shared data sent by modules and provide it to every module.

interface SharedParameter {
    key: string;
    value?: string;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

Properties

key: string

Identifier to find or set the shared parameter. Minimum 2 characters.

value?: string