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

    Interface LinkedNodeWithValue<T>

    interface LinkedNodeWithValue<T> {
        next?: LinkedNodeWithValue<T>;
        previous?: LinkedNodeWithValue<T>;
        value: T;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    value: T