Skip to main content
Version: v1

ISignalEnvelope Interface

Signature

export interface ISignalEnvelope

Properties

PropertyModifiersTypeDescription
addressoptionalstringThe target for the envelope, undefined for the container
clientSignalSequenceNumbernumberIdentifier for the signal being submitted.
contents{ type: string; content: any; }The contents of the envelope

Property Details

address

The target for the envelope, undefined for the container

Signature

address?: string;

Type: string

clientSignalSequenceNumber

Identifier for the signal being submitted.

Signature

clientSignalSequenceNumber: number;

Type: number

contents

The contents of the envelope

Signature

contents: {
type: string;
content: any;
};

Type: { type: string; content: any; }