UNPKG

openapi-modifier

Version:

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

14 lines (13 loc) 469 B
interface LoggerI { trace: (message: string, obj?: any) => void; info: (message: string) => void; notImportantWarning: (message: string) => void; warning: (message: string) => void; error: (error: Error, message?: string) => void; errorMessage: (message?: string) => void; success: (message: string) => void; clone: (name: string) => LoggerI; getHelpInfo: () => string; helpInfo: (message: string) => void; } export { LoggerI };