2019-04-01 03:35:23 +00:00
|
|
|
import { LoggingBase } from "./base";
|
2019-04-05 02:22:52 +00:00
|
|
|
|
|
|
|
export { LoggingBase, LoggingBaseOptions, removeColors } from "./base";
|
|
|
|
export {
|
|
|
|
Adapter,
|
|
|
|
LoggingTypes,
|
|
|
|
Message,
|
|
|
|
FormatConfig,
|
|
|
|
FormattedLine,
|
|
|
|
DefaultFormatConfig as DefaultColorMap,
|
|
|
|
FormattedText,
|
|
|
|
Colors,
|
|
|
|
Format,
|
|
|
|
FormatTypes,
|
|
|
|
TerminalFormats
|
|
|
|
} from "./types";
|
|
|
|
|
2019-04-01 03:35:23 +00:00
|
|
|
export { ObservableInterface } from "@hibas123/utils";
|
|
|
|
|
|
|
|
export let Logging: LoggingBase = undefined;
|
|
|
|
Logging = new LoggingBase();
|
|
|
|
export default Logging;
|