JSPM

@types/node-loggly-bulk

2.2.4
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3094
  • Score
    100M100P100Q130721F
  • License MIT

TypeScript definitions for node-loggly-bulk

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@types/node-loggly-bulk) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Installation

    npm install --save @types/node-loggly-bulk

    Summary

    This package contains type definitions for node-loggly-bulk (https://github.com/loggly/node-loggly-bulk#readme).

    Details

    Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node-loggly-bulk.

    index.d.ts

    import { LogglyInstance, LogglyOptions } from "loggly";
    
    export interface LogglyBulkOptions extends LogglyOptions {
        proxy?: any;
        userAgent?: string | undefined;
        useTagHeader?: boolean | undefined;
        isBulk?: boolean | undefined;
        bufferOptions?: {
            size: number;
            retriesInMilliSeconds: number;
        } | undefined;
        networkErrorsOnConsole?: boolean | undefined;
    }
    
    export interface LogglyBulkConstructor {
        new(options: LogglyBulkOptions): LogglyInstance;
    }
    
    export const Loggly: LogglyBulkConstructor;
    
    export const version: string;
    
    export function createClient(options: LogglyBulkOptions): LogglyInstance;
    
    export function serialize(obj: any, key?: string): string;
    

    Additional Details

    • Last updated: Tue, 07 Nov 2023 09:09:39 GMT
    • Dependencies: @types/loggly

    Credits

    These definitions were written by Andrei Kazakou.