Skip to main content

ILoadExistingContainerProps Interface

Props used to load a container.

This API is provided for existing users, but is not recommended for new users.

To use, import via @fluidframework/container-loader/legacy.

For more information about our API support guarantees, see here.

Signature

export interface ILoadExistingContainerProps extends ICreateAndLoadContainerProps

Extends: ICreateAndLoadContainerProps

Properties

Property Alerts Modifiers Type Description
pendingLocalState Alpha optional, readonly string | undefined Pending local state to be applied to the container.
request Alpha readonly IRequest The request to resolve the container.

Property Details

pendingLocalState

Pending local state to be applied to the container.

This API is provided for existing users, but is not recommended for new users.

For more information about our API support guarantees, see here.

Signature

readonly pendingLocalState?: string | undefined;

Type: string | undefined

request

The request to resolve the container.

This API is provided for existing users, but is not recommended for new users.

For more information about our API support guarantees, see here.

Signature

readonly request: IRequest;

Type: IRequest