Skip to main content

TypeFactoryArray Interface

Represents an array type in the type factory system.

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

To use, import via @fluidframework/tree-agent/alpha.

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

Signature

export interface TypeFactoryArray extends TypeFactoryType

Extends: TypeFactoryType

Properties

PropertyAlertsModifiersTypeDescription
_kindAlphareadonly"array"The kind of type this represents.
elementAlphareadonlyTypeFactoryTypeThe type of elements in the array.

Property Details

_kind

The kind of type this represents.

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

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

Signature

readonly _kind: "array";

Type: "array"

element

The type of elements in the array.

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

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

Signature

readonly element: TypeFactoryType;

Type: TypeFactoryType