UNPKG

locklift

Version:

Node JS framework for working with Ever contracts. Inspired by Truffle and Hardhat. Helps you to build, test, run and maintain your smart contracts.

15 lines (14 loc) 509 B
type ConsoleLogParams = Parameters<typeof console.log>; declare class Logger { printWarn(...params: ConsoleLogParams): void; printError(...params: ConsoleLogParams): void; printInfo(...params: ConsoleLogParams): void; printBuilderLog(...params: ConsoleLogParams): void; printTracingLog(...params: ConsoleLogParams): void; deprecated({ instruction, methodName }: { methodName: string; instruction: string; }): void; } export declare const logger: Logger; export {};