Skip to main content

TreeContainerSchema Interface

Declares the Fluid objects that will be available in the Container.

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

To use, import via @fluidframework/fluid-static/legacy.

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

Signature

export interface TreeContainerSchema extends ContainerSchema

Extends: ContainerSchema

Remarks

It includes both the kind of SharedTree that will be initially available upon Container creation, as well as the types of objects that may be dynamically created throughout the lifetime of the Container. \

Properties

Property Alerts Modifiers Type Description
initialObjects Alpha readonly { readonly tree: SharedObjectKind<ITree>; }

Property Details

initialObjects

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 initialObjects: {
readonly tree: SharedObjectKind<ITree>;
};

Type: { readonly tree: SharedObjectKind<ITree>; }