UNPKG

@cloudquery/plugin-sdk-javascript

Version:

This is the high-level package to use for developing CloudQuery plugins in JavaScript

13 lines (12 loc) 308 B
export declare enum LogLevel { trace = "trace", debug = "debug", info = "info", warn = "warn", error = "error" } export declare enum LogFormat { json = "json", text = "text" } export declare const createLogger: (level: LogLevel, logFormat: LogFormat) => import("winston").Logger;