Skip to content

Typed API (TypeDoc)


Typed API (TypeDoc) / Node

Type Alias: Node<E>

Node<E> = undefined | { next?: Node<E>; prev?: Node<E>; value: E; }

Defined in: index.ts:31

Type Parameters

E

E

Stored value type.

Since

2.0.0

Built with VitePress – Released under the MIT License.