Running everything through prettier

This commit is contained in:
Fabian Stamm
2020-04-09 17:50:30 +02:00
parent b647b8fae6
commit 94d9731cdd
5 changed files with 568 additions and 533 deletions

View File

@ -1,18 +1,23 @@
import { LoggingBase } from "./base";
export { ConsoleAdapter } from "./consolewriter";
export { LoggingBase, LoggingBaseOptions, removeColors, withColor } from "./base";
export {
Adapter,
LoggingTypes,
Message,
FormatConfig,
FormattedLine,
DefaultFormatConfig as DefaultColorMap,
FormattedText,
Colors,
Format,
FormatTypes,
TerminalFormats
LoggingBase,
LoggingBaseOptions,
removeColors,
withColor,
} from "./base";
export {
Adapter,
LoggingTypes,
Message,
FormatConfig,
FormattedLine,
DefaultFormatConfig as DefaultColorMap,
FormattedText,
Colors,
Format,
FormatTypes,
TerminalFormats,
} from "./types";
export { ObservableInterface } from "@hibas123/utils";