2.2.4 • Published 6 months ago

@types/node-loggly-bulk v2.2.4

Weekly downloads
1,313
License
MIT
Repository
github
Last release
6 months ago

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

// Type definitions for node-loggly-bulk 2.2
// Project: https://github.com/loggly/node-loggly-bulk#readme
// Definitions by: Andrei Kazakou <https://github.com/akazakou>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

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: Thu, 08 Jul 2021 18:51:21 GMT
  • Dependencies: @types/loggly
  • Global values: none

Credits

These definitions were written by Andrei Kazakou.

2.2.3

7 months ago

2.2.2

8 months ago

2.2.4

6 months ago

2.2.1

3 years ago

2.2.0

4 years ago