Skip to main content

TreeIndexNodes TypeAlias

an array of nodes that is guaranteed to have at least one element

This API is provided as an alpha preview and may change without notice.

To use, import via fluid-framework/alpha.

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

Signature

export type TreeIndexNodes<TNode> = readonly [first: TNode, ...rest: TNode[]];

Type Parameters

Parameter Description
TNode