@speedy-js/mono
Version:
Monorepo development & continuous integration tooling.
15 lines • 449 B
TypeScript
declare function error(msg: string): void;
declare function info(msg: string): void;
declare function warn(msg: string): void;
declare function enableDebug(): void;
declare function disableDebug(): void;
declare const logger: {
info: typeof info;
warn: typeof warn;
error: typeof error;
debug: any;
enableDebug: typeof enableDebug;
disableDebug: typeof disableDebug;
};
export { logger };
//# sourceMappingURL=logger.d.ts.map