Skip to main content
Module

x/datastructure/stack/helper.d.ts>StackType

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