refactor: split api into api, api-cli & api-plugin

This commit is contained in:
2023-06-02 16:41:25 +02:00
parent 495a63977c
commit b21833de40
205 changed files with 1981 additions and 1492 deletions

View File

@@ -26,7 +26,6 @@ export class AddLogLevel implements Transformation {
/**
* Add log level to output
*
* @param logLevel Log level to add to output
* @param output Output to colorize
*/

View File

@@ -29,7 +29,6 @@ export class Colorize implements Transformation {
/**
* Instantiate a new colorize transformation
*
* @param logLevelToColor Map from log level to color transformation to apply
*/
constructor(
@@ -47,7 +46,6 @@ export class Colorize implements Transformation {
/**
* Colorize log output
*
* @param logLevel Log level to choose color for
* @param output Output to colorize
*/

View File

@@ -26,7 +26,6 @@ export class Timestamp implements Transformation {
/**
* Add timestamp to output
*
* @param _logLevel Log level to add timestamp to output for
* @param output Output to add timestamp to
*/