UNPKG

clvm_tools

Version:

Javascript implementation of clvm_tools

7 lines (6 loc) 324 B
export declare type TPrinter = (...data: any[]) => unknown; export declare const dev_null: TPrinter; export declare function setStdout(p: TPrinter): void; export declare function print(message?: string): void; export declare function setStderr(p: TPrinter): void; export declare function printError(message?: string): void;