Merge pull request #15381 from rzymek/lodash.nth

lodash - lodash.nth package
This commit is contained in:
Nathan Shively-Sanders
2017-03-27 15:00:13 -07:00
committed by GitHub
3 changed files with 30 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
// Type definitions for lodash.nth 4.0
// Project: http://lodash.com/
// Definitions by: Brian Zengel <https://github.com/bczengel>, Ilya Mochalov <https://github.com/chrootsu>, Stepan Mikhaylyuk <https://github.com/stepancar>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
import { nth } from "lodash";
export = nth;
+21
View File
@@ -0,0 +1,21 @@
{
"files": [
"index.d.ts"
],
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
}
}
+1
View File
@@ -0,0 +1 @@
{ "extends": "../tslint.json" }