UNPKG

openapi-modifier

Version:

This package allows you to automate the process of modifying OpenAPI specifications by applying a set of predefined rules

18 lines (17 loc) 655 B
import { LoggerI } from './interface'; declare class CompositeLogger implements LoggerI { private loggers; constructor(loggers: LoggerI[]); addLogger: (logger: LoggerI) => void; clone: (name: string) => CompositeLogger; trace: (message: string, obj?: any) => void; info: (message: string) => void; notImportantWarning: (message: string) => void; error: (error: Error, message?: string) => void; errorMessage: (message?: string) => void; warning: (message: string) => void; success: (message: string) => void; helpInfo: (message: string) => void; getHelpInfo: () => string; } export { CompositeLogger };