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;
}

Properties

Properties

key: string
value: string