ISignalEnvelop Interface
Packages > @fluidframework/runtime-definitions > ISignalEnvelop
Signature:
export interface ISignalEnvelop
Properties
Property | Type | Description |
---|---|---|
address | string | The target for the envelope, undefined for the container |
contents | { type: string; content: any; } | The contents of the envelope |
Events
address
The target for the envelope, undefined for the container
Signature:
address?: string;
contents
The contents of the envelope
Signature:
contents: {
type: string;
content: any;
};