checksync
Version:
A tool that allows code to be annotated across different files to ensure they remain in sync.
15 lines (14 loc) • 554 B
TypeScript
import { ILog, IStandardLog } from "./types";
export default class Logging implements ILog {
_logger: IStandardLog | null | undefined;
_verbose: boolean;
constructor(logger?: IStandardLog | null, verbose?: boolean);
setVerbose: () => boolean;
group: (...labels: Array<string>) => void;
groupEnd: () => void;
log: (message: string) => void;
info: (message: string) => void;
error: (message: string) => void;
warn: (message: string) => void;
verbose: (messageBuilder: () => string | null | undefined) => void;
}