@test-org122/hypernet-core
Version:
Hypernet Core. Represents the SDK for running the Hypernet Protocol.
10 lines • 412 B
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;
}
//# sourceMappingURL=ILogUtils.d.ts.map