@athenna/logger 3.0.8 → 3.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.d.ts +4 -4
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
import { Facade } from '@athenna/ioc'
|
|
11
|
+
import { Options } from '@athenna/common'
|
|
11
12
|
|
|
12
13
|
export const Log: typeof Facade & Logger
|
|
13
14
|
|
|
@@ -465,14 +466,13 @@ export class DriverFactory {
|
|
|
465
466
|
static fabricate(channelName: string, runtimeConfig?: any): any
|
|
466
467
|
|
|
467
468
|
/**
|
|
468
|
-
* Fabricate a new instance of a driver
|
|
469
|
+
* Fabricate a new instance of a driver with vanilla
|
|
469
470
|
* configurations.
|
|
470
471
|
*
|
|
471
|
-
* @param {
|
|
472
|
-
* @param {any} runtimeConfig
|
|
472
|
+
* @param {any} configs
|
|
473
473
|
* @return {any}
|
|
474
474
|
*/
|
|
475
|
-
static
|
|
475
|
+
static fabricateVanilla(configs?: any): any
|
|
476
476
|
|
|
477
477
|
/**
|
|
478
478
|
* Creates a new driver implementation.
|