@types/bunyan-config
TypeScript icon, indicating that this package has built-in type declarations

0.2.7 • Public • Published

Installation

npm install --save @types/bunyan-config

Summary

This package contains type definitions for bunyan-config (https://github.com/LSEducation/bunyan-config).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/bunyan-config.

index.d.ts

/// <reference types="bunyan"/>

declare module "bunyan-config" {
    import * as bunyan from "bunyan";
    interface StreamConfiguration {
        name: string;
        params?: {
            host: string;
            port: number;
        } | undefined;
    }

    interface Stream {
        type?: string | undefined;
        level?: bunyan.LogLevel | undefined;
        path?: string | undefined;
        stream?: string | StreamConfiguration | undefined;
        closeOnExit?: boolean | undefined;
        period?: string | undefined;
        count?: number | undefined;
    }

    /**
     * Configuration.
     * @interface
     */
    interface Configuration {
        name: string;
        streams?: Stream[] | undefined;
        level?: string | number | undefined;
        stream?: NodeJS.WritableStream | undefined;
        serializers?: {} | undefined;
        src?: boolean | undefined;
    }

    /**
     * Constructor.
     * @param {Configuration} [jsonConfig] A JSON configuration.
     * @return {LoggerOptions} A logger options.
     */
    function bunyanConfig(jsonConfig?: Configuration): bunyan.LoggerOptions;
    export = bunyanConfig;
}

Additional Details

  • Last updated: Mon, 06 Nov 2023 22:41:05 GMT
  • Dependencies: @types/bunyan

Credits

These definitions were written by Cyril Schumacher.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/bunyan-config

Weekly Downloads

0

Version

0.2.7

License

MIT

Unpacked Size

5.01 kB

Total Files

5

Last publish

Collaborators

  • types