Type alias ProtectedLinkedNode<TNode>

ProtectedLinkedNode<TNode>: Omit<TNode, "previous" | "next"> & {
    next?: ProtectedLinkedNode<TNode>;
    previous?: ProtectedLinkedNode<TNode>;
}

Type Parameters

Generated using TypeDoc