type alias NodeTypeimport { type NodeType } from "https://deno.land/x/datastructure@1.2.1/linkedList/singly/helper.d.ts"; definition: { data: DataType<any>; next: null | NodeType; } | null