@tsdotnet/linked-node-list - v1.4.2
    Preparing search index...

    Type Alias ProtectedLinkedNode<TNode>

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

    Type Parameters