UNPKG

nano-pow

Version:

Proof-of-work generation and validation with WebGPU/WebGL/WASM for Nano cryptocurrency.

12 lines (11 loc) 328 B
/** * Override console logging to provide an informative prefix for each entry and * to only output when debug mode is enabled. */ export declare class Logger { isEnabled: boolean; groups: Record<string, boolean>; groupStart(name: string): void; groupEnd(name: string): void; log(...args: any[]): void; }