Socket
Socket
Sign inDemoInstall

@types/lodash

Package Overview
Dependencies
0
Maintainers
1
Versions
202
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.14.180 to 4.14.181

16

lodash/common/function.d.ts

@@ -371,2 +371,5 @@ import _ = require("../index");

}
interface DebounceSettingsLeading extends DebounceSettings {
leading: true;
}
interface DebouncedFunc<T extends (...args: any[]) => any> {

@@ -398,2 +401,6 @@ /**

}
interface DebouncedFuncLeading<T extends (...args: any[]) => any> extends DebouncedFunc<T> {
(...args: Parameters<T>): ReturnType<T>;
flush(): ReturnType<T>;
}
interface LoDashStatic {

@@ -420,2 +427,3 @@ /**

*/
debounce<T extends (...args: any) => any>(func: T, wait: number | undefined, options: DebounceSettingsLeading): DebouncedFuncLeading<T>;
debounce<T extends (...args: any) => any>(func: T, wait?: number, options?: DebounceSettings): DebouncedFunc<T>;

@@ -428,2 +436,6 @@ }

debounce(
wait: number | undefined,
options: DebounceSettingsLeading
): T extends (...args: any[]) => any ? Function<DebouncedFuncLeading<T>> : never;
debounce(
wait?: number,

@@ -438,2 +450,6 @@ options?: DebounceSettings

debounce(
wait: number | undefined,
options: DebounceSettingsLeading
): T extends (...args: any[]) => any ? FunctionChain<DebouncedFuncLeading<T>> : never;
debounce(
wait?: number,

@@ -440,0 +456,0 @@ options?: DebounceSettings

4

lodash/package.json
{
"name": "@types/lodash",
"version": "4.14.180",
"version": "4.14.181",
"description": "TypeScript definitions for Lo-Dash",

@@ -63,4 +63,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash",

"dependencies": {},
"typesPublisherContentHash": "866f70e18f129356be318f5ed741df1d7045aed3ba2063f3c44809f9015d1059",
"typesPublisherContentHash": "012e997ab7eafe91f13d511d95e41a2e7cb1d79a3f628e2f40d082d5db086c3b",
"typeScriptVersion": "3.9"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Mon, 14 Mar 2022 19:31:43 GMT
* Last updated: Tue, 29 Mar 2022 13:31:45 GMT
* Dependencies: none

@@ -14,0 +14,0 @@ * Global values: `_`

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc