Merge pull request #21828 from tomc974/lodash-defaultTo

lodash: adds missing export for conformsTo and defaultTo
This commit is contained in:
Armando Aguirre
2017-12-01 12:26:41 -08:00
committed by GitHub
3 changed files with 8 additions and 2 deletions

2
types/lodash/conformsTo.d.ts vendored Normal file
View File

@@ -0,0 +1,2 @@
import { conformsTo } from "./index";
export = conformsTo;

2
types/lodash/defaultTo.d.ts vendored Normal file
View File

@@ -0,0 +1,2 @@
import { defaultTo } from "./index";
export = defaultTo;

View File

@@ -6,8 +6,8 @@
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
@@ -46,6 +46,7 @@
"compact.d.ts",
"concat.d.ts",
"cond.d.ts",
"conformsTo.d.ts",
"constant.d.ts",
"countBy.d.ts",
"create.d.ts",
@@ -55,6 +56,7 @@
"deburr.d.ts",
"defaults.d.ts",
"defaultsDeep.d.ts",
"defaultTo.d.ts",
"defer.d.ts",
"delay.d.ts",
"difference.d.ts",
@@ -316,4 +318,4 @@
"zipObjectDeep.d.ts",
"zipWith.d.ts"
]
}
}