Nestjs Pino Extra Packages - v1.0.0
    Preparing search index...
    interface LoggerModuleAsyncParams {
        imports?: (
            | DynamicModule
            | Type<any>
            | Promise<DynamicModule>
            | ForwardReference<any>
        )[];
        inject?: any[];
        providers?: Provider[];
        useFactory: (...args: any[]) => Params | Promise<Params>;
    }

    Hierarchy

    • Pick<ModuleMetadata, "imports" | "providers">
      • LoggerModuleAsyncParams
    Index

    Properties

    imports?: (
        | DynamicModule
        | Type<any>
        | Promise<DynamicModule>
        | ForwardReference<any>
    )[]

    Optional list of imported modules that export the providers which are required in this module.

    inject?: any[]
    providers?: Provider[]

    Optional list of providers that will be instantiated by the Nest injector and that may be shared at least across this module.

    useFactory: (...args: any[]) => Params | Promise<Params>