Skip to main content
Module

x/datastructure/blockChain/helper.d.ts>BlockType

Implement different Data Structures using TypeScript. Deno Third-party Module.
Latest
type alias BlockType
import { type BlockType } from "https://deno.land/x/datastructure@1.2.1/blockChain/helper.d.ts";
definition: { index: number; data: DataType<any>; time: Date; hash: string; prevHash: null | string; }