Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/datastructure/hashTable/helper.d.ts>NodeType

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