Skip to content

Commit

Permalink
Merge pull request #55 from AthennaIO/develop
Browse files Browse the repository at this point in the history
fix(types): add missing types
  • Loading branch information
jlenon7 authored Jan 15, 2023
2 parents ab9d1eb + 0ffd8e9 commit 9420f83
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <lenon@athenna.io>",
Expand Down
8 changes: 4 additions & 4 deletions src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
*/

import { Facade } from '@athenna/ioc'
import { Options } from '@athenna/common'

export const Log: typeof Facade & Logger

Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 9420f83

Please sign in to comment.