/** * A node for singly 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 next node in the sequence */ next: Node; /** * Creates a new node. * @param val - The value to store in the node */ constructor(val: T); } //# sourceMappingURL=single-node.d.ts.map