ISignalEnvelope Interface
Signature
export interface ISignalEnvelope
Properties
| Property | Modifiers | Type | Description |
|---|---|---|---|
| address | optional | string | The target for the envelope, undefined for the container |
| clientSignalSequenceNumber | number | Identifier 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; }