Socket
Socket
Sign inDemoInstall

fluent-logger

Package Overview
Dependencies
Maintainers
4
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fluent-logger - npm Package Compare versions

Comparing version 3.2.0 to 3.2.1

15

lib/index.d.ts

@@ -78,5 +78,18 @@ // Type definitions for fluent-logger-node

function configure(tag: string, options: Options): void;
function createFluentSender(tag: string, options: Options): FluentSender;
function createFluentSender<T>(tag: string, options: Options): FluentSender<T>;
function emit<T>(data: T, callback?: Callback): void;
function emit<T>(data: T, timestamp: Timestamp, callback?: Callback): void;
function emit<T>(label: string, data: T, callback?: Callback): void;
function emit<T>(label: string, data: T, timestamp: Timestamp, callback?: Callback): void;
function end<T>(label: string, data: T, callback: Callback): void;
function on(event: string | symbol, listener: (...args: any[]) => void): void;
function once(event: string | symbol, listener: (...args: any[]) => void): void;
function removeListener(event: string | symbol, listener: (...args: any[]) => void): void;
function removeAllListeners(event?: string | symbol): void;
function setMaxListeners(n: number): void;
function getMaxListeners(): number;
}
export = fluentLogger;

2

package.json
{
"name": "fluent-logger",
"version": "3.2.0",
"version": "3.2.1",
"main": "./lib/index.js",

@@ -5,0 +5,0 @@ "scripts": {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc