Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/lambda-log

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/lambda-log - npm Package Compare versions

Comparing version 2.2.0 to 2.2.1

20

lambda-log/index.d.ts

@@ -16,3 +16,3 @@ // Type definitions for lambda-log 2.2

meta?: any;
tags?: string[];
tags?: string[] | undefined;
}

@@ -32,3 +32,3 @@

meta?: any;
tags?: string[];
tags?: string[] | undefined;

@@ -49,17 +49,17 @@ constructor(logRecordOptions: LogRecordOptions, opts: LambdaLogOptions);

// Global tags array to include with every log
tags?: string[];
tags?: string[] | undefined;
// Optional function which will run for every log to inject dynamic metadata
dynamicMeta?: (message: LogMessage) => any;
dynamicMeta?: ((message: LogMessage) => any) | undefined;
// Enable debugging mode (log.debug messages)
debug?: boolean;
debug?: boolean | undefined;
// Enable development mode which pretty-prints the log object to the console
dev?: boolean;
dev?: boolean | undefined;
// Disables logging to the console (used for testing)
silent?: boolean;
silent?: boolean | undefined;
// Optional replacer function for `JSON.stringify`
replacer?: (key: string, value: any) => any;
replacer?: ((key: string, value: any) => any) | undefined;
// Optional stream to write stdout messages to
stdoutStream?: WriteStream;
stdoutStream?: WriteStream | undefined;
// Optional stream to write stderr messages to
stderrStream?: WriteStream;
stderrStream?: WriteStream | undefined;
}

@@ -66,0 +66,0 @@

{
"name": "@types/lambda-log",
"version": "2.2.0",
"version": "2.2.1",
"description": "TypeScript definitions for lambda-log",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lambda-log",
"license": "MIT",

@@ -14,3 +15,3 @@ "contributors": [

"main": "",
"types": "index",
"types": "index.d.ts",
"repository": {

@@ -25,4 +26,4 @@ "type": "git",

},
"typesPublisherContentHash": "96694c0eac83ae19b71eb5e5abc8264fd72552e0e2dc951304fca8a4fd287009",
"typeScriptVersion": "2.8"
"typesPublisherContentHash": "694d89f1529328f40bf943aad2d9d5669990c75be890695e6272f0283bd0b30f",
"typeScriptVersion": "3.6"
}

@@ -5,13 +5,13 @@ # Installation

# Summary
This package contains type definitions for lambda-log ( https://github.com/KyleRoss/node-lambda-log ).
This package contains type definitions for lambda-log (https://github.com/KyleRoss/node-lambda-log).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lambda-log
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lambda-log.
Additional Details
* Last updated: Thu, 16 May 2019 14:48:38 GMT
* Dependencies: @types/node
### Additional Details
* Last updated: Thu, 08 Jul 2021 16:23:30 GMT
* Dependencies: [@types/node](https://npmjs.com/package/@types/node)
* Global values: none
# Credits
These definitions were written by Andrés Reyes Monge <https://github.com/armonge>.
These definitions were written by [Andrés Reyes Monge](https://github.com/armonge).

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