UNPKG

workspace-integrations

Version:
10 lines (9 loc) 262 B
import { LogLevel } from './types'; declare const logger: { setLogLevel(level: LogLevel): void; error(message: string): void; warn(message: string): void; info(message: string): void; verbose(message: string): void; }; export default logger;