Viewing File: /usr/share/nodejs/@types/fancy-log/index.d.ts
// Type definitions for fancy-log 1.3
// Project: https://github.com/gulpjs/fancy-log
// Definitions by: Pine Mizune <https://github.com/pine>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare namespace FancyLog {
interface Logger {
(...args: any[]): Logger;
dir(...args: any[]): Logger;
error(...args: any[]): Logger;
info(...args: any[]): Logger;
warn(...args: any[]): Logger;
}
}
declare var logger: FancyLog.Logger;
export = logger;
Back to Directory
File Manager