/** * A node for doubly linked data structures. * @typeparam T - The type of value stored in the node */ export declare class Node { /** The value stored in this node */ val: T; /** Reference to the previous node in the sequence */ prev: Node | null; /** Reference to the next node in the sequence */ next: Node | null; /** * Creates a new node. * @param val - The value to store in the node */ constructor(val: T); } //# sourceMappingURL=double-node.d.ts.map