2019-04-01 03:35:23 +00:00
|
|
|
import { LoggingBase } from "./base";
|
2019-04-01 03:50:11 +00:00
|
|
|
export { Colors, LoggingBase, LoggingBaseOptions } from "./base";
|
2019-04-01 03:35:23 +00:00
|
|
|
export { Adapter, LoggingTypes, Message } from "./types";
|
|
|
|
export { ObservableInterface } from "@hibas123/utils";
|
|
|
|
|
|
|
|
export let Logging: LoggingBase = undefined;
|
|
|
|
Logging = new LoggingBase();
|
|
|
|
export default Logging;
|