From 0ffd8e92d25a26303087dfa0fce49a9b33cd3972 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lenon?= Date: Sun, 15 Jan 2023 15:52:58 -0300 Subject: [PATCH] fix(types): add missing types --- package.json | 2 +- src/index.d.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 784f376..b6bf027 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@athenna/logger", - "version": "3.0.8", + "version": "3.0.9", "description": "The Athenna logging solution. Log in stdout, files and buckets.", "license": "MIT", "author": "João Lenon ", diff --git a/src/index.d.ts b/src/index.d.ts index 78fe1ea..d190893 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -8,6 +8,7 @@ */ import { Facade } from '@athenna/ioc' +import { Options } from '@athenna/common' export const Log: typeof Facade & Logger @@ -465,14 +466,13 @@ export class DriverFactory { static fabricate(channelName: string, runtimeConfig?: any): any /** - * Fabricate a new instance of a driver without + * Fabricate a new instance of a driver with vanilla * configurations. * - * @param {string} driverName - * @param {any} runtimeConfig + * @param {any} configs * @return {any} */ - static fabricateOnly(driverName: string, runtimeConfig?: any): any + static fabricateVanilla(configs?: any): any /** * Creates a new driver implementation.