@types/lodash 4.14.103 → 4.14.104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lodash/README.md +1 -1
- lodash/common/common.d.ts +1 -1
- lodash/package.json +2 -2
lodash/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Lo-Dash (http://lodash.com/).
|
|
|
8
8
|
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, 16 Feb 2018 18:18:18 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: _
|
|
14
14
|
|
lodash/common/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import _ = require("../index");
|
|
|
2
2
|
type GlobalPartial<T> = Partial<T>;
|
|
3
3
|
declare module "../index" {
|
|
4
4
|
type PartialObject<T> = GlobalPartial<T>;
|
|
5
|
-
type Many<T> = T | ReadonlyArray<T
|
|
5
|
+
type Many<T> = T | T[]; // TODO: Should be ReadonlyArray<T>, but requires ts2.5 to not infinitely loop
|
|
6
6
|
interface LoDashStatic {
|
|
7
7
|
/**
|
|
8
8
|
* Creates a lodash object which wraps value to enable implicit method chain sequences.
|
lodash/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/lodash",
|
|
3
|
-
"version": "4.14.
|
|
3
|
+
"version": "4.14.104",
|
|
4
4
|
"description": "TypeScript definitions for Lo-Dash",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -57,6 +57,6 @@
|
|
|
57
57
|
},
|
|
58
58
|
"scripts": {},
|
|
59
59
|
"dependencies": {},
|
|
60
|
-
"typesPublisherContentHash": "
|
|
60
|
+
"typesPublisherContentHash": "c36738a623ac109215d6490f59bd1353f53841adaf45cf1a63b6415b5ba96bf5",
|
|
61
61
|
"typeScriptVersion": "2.2"
|
|
62
62
|
}
|