UNPKG

@radixdlt/radix-engine-toolkit

Version:

A TypeScript wrapper for the Radix Engine Toolkit that provides many of the necessary tools to interact with the Radix ledger

13 lines (12 loc) 247 B
import { Instruction } from "../../"; export type Instructions = { kind: "String"; value: string; } | { kind: "Parsed"; value: Instruction[]; }; export declare enum InstructionsKind { String = "String", Parsed = "Parsed" }