From 7858969432d86386ef9c382dc51f8e08c7eaa0b5 Mon Sep 17 00:00:00 2001
From: "Dominik.Sigmund" <dominik.sigmund@br.de>
Date: Wed, 23 Aug 2023 12:05:01 +0200
Subject: [PATCH] fix type namespace#

---
 index.d.ts   | 3 +--
 package.json | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/index.d.ts b/index.d.ts
index 5007519..932931c 100755
--- a/index.d.ts
+++ b/index.d.ts
@@ -1,8 +1,7 @@
-export as namespace Log;
 
 /*~ Write your module's methods and properties in this class */
 export class Log {
-    constructor(config?: any);
+    constructor(config?: LogConfig);
     info(...message: any): string;
     notice(...message: any): string;
     debug(...message: any): string;
diff --git a/package.json b/package.json
index 0dc915a..c547a63 100755
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@libs/log",
-  "version": "3.1.4",
+  "version": "3.1.5",
   "description": "A simple Logger with Options!",
   "main": "index.js",
   "scripts": {
-- 
GitLab