IEnvelope Interface
Packages > @fluidframework/runtime-definitions > IEnvelope
An envelope wraps the contents with the intended target
This API is provided for existing users, but is not recommended for new users.
To use, import via @fluidframework/runtime-definitions/legacy
.
For more information about our API support guarantees, see here .
Signature
export interface IEnvelope
Properties
Property | Alerts | Type | Description |
---|---|---|---|
address | Alpha |
string | The target for the envelope |
contents | Alpha |
any | The contents of the envelope |
Property Details
address
The target for the envelope
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/runtime-definitions/alpha
.
For more information about our API support guarantees, see here .
Signature
address: string;
Type: string
contents
The contents of the envelope
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/runtime-definitions/alpha
.
For more information about our API support guarantees, see here .
Signature
contents: any;
Type: any