@test-org122/hypernet-core
Version:
Hypernet Core. Represents the SDK for running the Hypernet Protocol.
11 lines (9 loc) • 362 B
text/typescript
import pino from "pino";
export interface ILogUtils {
debug(message?: any, ...optionalParams: any[]): void;
info(message?: any, ...optionalParams: any[]): void;
log(message?: any, ...optionalParams: any[]): void;
warning(message?: any, ...optionalParams: any[]): void;
error(message?: any, ...optionalParams: any[]): void;
getPino(): pino.Logger;
}