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

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

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