28 lines
561 B
TypeScript
28 lines
561 B
TypeScript
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,
|
|
} from "./types";
|
|
|
|
export { ObservableInterface } from "@hibas123/utils";
|
|
|
|
export let Logging: LoggingBase = undefined;
|
|
Logging = new LoggingBase();
|
|
export default Logging;
|