Skip to main content

IterableTreeArrayContent Class

Used to insert iterable content into a TreeArrayNode. Use (TreeArrayNode:variable).spread to create an instance of this type.

Sealed

This type is "sealed," meaning that code outside of the library defining it should not implement or extend it. Future versions of this type may add members or make typing of readonly members more specific.

Signature​

/** @sealed */
export declare class IterableTreeArrayContent<T> implements Iterable<T>

Implements: Iterable<T>

Type Parameters​

ParameterDescription
T

Methods​

MethodReturn TypeDescription
[Symbol.iterator]()Iterator<T>Iterates over content for nodes to insert.

Method Details​

[Symbol.iterator]​

Iterates over content for nodes to insert.

Signature​

[Symbol.iterator](): Iterator<T>;

Returns​

Return type: Iterator<T>