Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/datastructure/linkedList/singly/helper.d.ts>NodeType

Implement different Data Structures using TypeScript. Deno Third-party Module.
Latest
type alias NodeType
import { type NodeType } from "https://deno.land/x/datastructure@1.2.1/linkedList/singly/helper.d.ts";
definition: { data: DataType<any>; next: null | NodeType; } | null