mcopy/app/lib/log/index.d.ts

11 lines
290 B
TypeScript
Raw Normal View History

import type { Logger } from 'winston';
/**
* Create and return the logger transport based on settings determined in
* arguments object
*
* @param {object} arg Arguments from process
*
* @returns {object} Logger transport
**/
export declare function Log(arg: any): Promise<Logger>;