Removing all Node specific stuff from NodeLogging.

This commit is contained in:
Fabian
2019-03-31 23:35:23 -04:00
commit e489a15892
11 changed files with 3971 additions and 0 deletions

8
src/index.ts Normal file
View File

@ -0,0 +1,8 @@
import { LoggingBase } from "./base";
export { Colors, LoggingBase } from "./base";
export { Adapter, LoggingTypes, Message } from "./types";
export { ObservableInterface } from "@hibas123/utils";
export let Logging: LoggingBase = undefined;
Logging = new LoggingBase();
export default Logging;