UNPKG

clvm_tools

Version:

Javascript implementation of clvm_tools

6 lines (5 loc) 320 B
import { SExp, Stream } from "clvm"; export declare function iter_sexp_format(ir_sexp: SExp): Generator<string>; export declare function iter_ir_format(ir_sexp: SExp): Generator<string>; export declare function write_ir_to_stream(ir_sexp: SExp, f: Stream): void; export declare function write_ir(ir_sexp: SExp): string;