Adding options export

This commit is contained in:
Fabian 2019-03-31 23:50:11 -04:00
parent e489a15892
commit be009d24c0
3 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@ node_modules/
logs/
yarn.lock
out/
.history/

View File

@ -1,6 +1,6 @@
{
"name": "@hibas123/logging",
"version": "1.0.0",
"version": "1.0.1",
"description": "",
"main": "out/index.js",
"types": "out/index.d.ts",

View File

@ -1,5 +1,5 @@
import { LoggingBase } from "./base";
export { Colors, LoggingBase } from "./base";
export { Colors, LoggingBase, LoggingBaseOptions } from "./base";
export { Adapter, LoggingTypes, Message } from "./types";
export { ObservableInterface } from "@hibas123/utils";