UNPKG

excel-csv-read-write

Version:
22 lines 654 B
import pino, { Logger } from 'pino'; interface Transport { target: string; options: { translateTime: string; ignore: string; levelFirst: boolean; }; } interface LoggerConfig { level: string; moduleLogLevels: Record<string, pino.LevelWithSilent>; transport?: Transport; } export declare function setLoggerConfig(config: LoggerConfig): void; /** * モジュール名を指定して Logger を取得。 * 初回アクセス時に生成し、以後はキャッシュされたものを返す。 */ export declare function getLogger(moduleName: string): Logger; export {}; //# sourceMappingURL=logger.d.ts.map