From 6d2e8fa27a1d3e14ab2ceddb9a544701f93decb3 Mon Sep 17 00:00:00 2001 From: Waldek Mastykarz Date: Tue, 22 Nov 2016 14:46:35 +0100 Subject: [PATCH] Added React multipage sample (#62) --- samples/react-multipage/.editorconfig | 25 + samples/react-multipage/.gitattributes | 1 + samples/react-multipage/.gitignore | 32 + samples/react-multipage/.npmignore | 14 + samples/react-multipage/.vscode/settings.json | 23 + samples/react-multipage/.vscode/tasks.json | 34 + samples/react-multipage/.yo-rc.json | 7 + samples/react-multipage/README.md | 82 + .../react-multipage/assets/poll-preview.gif | Bin 0 -> 633205 bytes samples/react-multipage/config/config.json | 22 + .../config/deploy-azure-storage.json | 6 + .../config/package-solution.json | 10 + .../config/prepare-deploy.json | 3 + samples/react-multipage/config/serve.json | 9 + samples/react-multipage/config/tslint.json | 51 + .../config/write-manifests.json | 3 + samples/react-multipage/gulpfile.js | 6 + samples/react-multipage/package.json | 31 + .../react-multipage/react-multipage.njsproj | 86 + samples/react-multipage/src/tests.js | 5 + .../src/webparts/poll/IPollWebPartProps.ts | 5 + .../src/webparts/poll/Poll.module.scss | 3 + .../webparts/poll/PollWebPart.manifest.json | 21 + .../src/webparts/poll/PollWebPart.ts | 106 + .../poll/components/Config/Config.tsx | 28 + .../poll/components/Config/IConfigProps.ts | 6 + .../webparts/poll/components/Config/index.ts | 1 + .../poll/components/Main/IMainProps.ts | 10 + .../webparts/poll/components/Main/Main.tsx | 27 + .../webparts/poll/components/Main/index.ts | 2 + .../poll/components/Poll/IPollProps.ts | 8 + .../poll/components/Poll/IPollState.ts | 3 + .../webparts/poll/components/Poll/Poll.tsx | 48 + .../webparts/poll/components/Poll/index.ts | 1 + .../poll/components/Results/IResultsProps.ts | 6 + .../poll/components/Results/IResultsState.ts | 7 + .../poll/components/Results/Results.tsx | 160 + .../webparts/poll/components/Results/index.ts | 1 + .../poll/components/Vote/IVoteProps.ts | 7 + .../poll/components/Vote/IVoteState.ts | 9 + .../webparts/poll/components/Vote/Vote.tsx | 101 + .../webparts/poll/components/Vote/index.ts | 1 + .../src/webparts/poll/loc/en-us.js | 10 + .../src/webparts/poll/loc/mystrings.d.ts | 13 + .../webparts/poll/services/IPollService.ts | 8 + .../src/webparts/poll/services/IVoteOption.ts | 4 + .../webparts/poll/services/IVoteOptionItem.ts | 5 + .../src/webparts/poll/services/IVoteResult.ts | 5 + .../webparts/poll/services/MockPollService.ts | 55 + .../src/webparts/poll/services/PollService.ts | 131 + .../src/webparts/poll/services/index.ts | 6 + .../src/webparts/poll/tests/Poll.test.ts | 7 + samples/react-multipage/tsconfig.json | 9 + .../typings/@ms/odsp-webpack.d.ts | 13 + samples/react-multipage/typings/@ms/odsp.d.ts | 10 + .../assertion-error/assertion-error.d.ts | 15 + .../react-multipage/typings/chai/chai.d.ts | 388 + .../typings/combokeys/combokeys.d.ts | 107 + .../es6-collections/es6-collections.d.ts | 113 + .../typings/es6-promise/es6-promise.d.ts | 74 + .../typings/knockout/knockout.d.ts | 631 + .../typings/lodash/lodash.d.ts | 20808 ++++++++++++++++ .../react-multipage/typings/mocha/mocha.d.ts | 214 + .../react-multipage/typings/node/node.d.ts | 2392 ++ .../react/react-addons-shallow-compare.d.ts | 19 + .../react/react-addons-test-utils.d.ts | 155 + .../typings/react/react-addons-update.d.ts | 35 + .../typings/react/react-dom.d.ts | 66 + .../react-multipage/typings/react/react.d.ts | 2284 ++ .../typings/systemjs/systemjs.d.ts | 21 + samples/react-multipage/typings/tsd.d.ts | 18 + .../typings/whatwg-fetch/whatwg-fetch.d.ts | 87 + 72 files changed, 28714 insertions(+) create mode 100644 samples/react-multipage/.editorconfig create mode 100644 samples/react-multipage/.gitattributes create mode 100644 samples/react-multipage/.gitignore create mode 100644 samples/react-multipage/.npmignore create mode 100644 samples/react-multipage/.vscode/settings.json create mode 100644 samples/react-multipage/.vscode/tasks.json create mode 100644 samples/react-multipage/.yo-rc.json create mode 100644 samples/react-multipage/README.md create mode 100644 samples/react-multipage/assets/poll-preview.gif create mode 100644 samples/react-multipage/config/config.json create mode 100644 samples/react-multipage/config/deploy-azure-storage.json create mode 100644 samples/react-multipage/config/package-solution.json create mode 100644 samples/react-multipage/config/prepare-deploy.json create mode 100644 samples/react-multipage/config/serve.json create mode 100644 samples/react-multipage/config/tslint.json create mode 100644 samples/react-multipage/config/write-manifests.json create mode 100644 samples/react-multipage/gulpfile.js create mode 100644 samples/react-multipage/package.json create mode 100644 samples/react-multipage/react-multipage.njsproj create mode 100644 samples/react-multipage/src/tests.js create mode 100644 samples/react-multipage/src/webparts/poll/IPollWebPartProps.ts create mode 100644 samples/react-multipage/src/webparts/poll/Poll.module.scss create mode 100644 samples/react-multipage/src/webparts/poll/PollWebPart.manifest.json create mode 100644 samples/react-multipage/src/webparts/poll/PollWebPart.ts create mode 100644 samples/react-multipage/src/webparts/poll/components/Config/Config.tsx create mode 100644 samples/react-multipage/src/webparts/poll/components/Config/IConfigProps.ts create mode 100644 samples/react-multipage/src/webparts/poll/components/Config/index.ts create mode 100644 samples/react-multipage/src/webparts/poll/components/Main/IMainProps.ts create mode 100644 samples/react-multipage/src/webparts/poll/components/Main/Main.tsx create mode 100644 samples/react-multipage/src/webparts/poll/components/Main/index.ts create mode 100644 samples/react-multipage/src/webparts/poll/components/Poll/IPollProps.ts create mode 100644 samples/react-multipage/src/webparts/poll/components/Poll/IPollState.ts create mode 100644 samples/react-multipage/src/webparts/poll/components/Poll/Poll.tsx create mode 100644 samples/react-multipage/src/webparts/poll/components/Poll/index.ts create mode 100644 samples/react-multipage/src/webparts/poll/components/Results/IResultsProps.ts create mode 100644 samples/react-multipage/src/webparts/poll/components/Results/IResultsState.ts create mode 100644 samples/react-multipage/src/webparts/poll/components/Results/Results.tsx create mode 100644 samples/react-multipage/src/webparts/poll/components/Results/index.ts create mode 100644 samples/react-multipage/src/webparts/poll/components/Vote/IVoteProps.ts create mode 100644 samples/react-multipage/src/webparts/poll/components/Vote/IVoteState.ts create mode 100644 samples/react-multipage/src/webparts/poll/components/Vote/Vote.tsx create mode 100644 samples/react-multipage/src/webparts/poll/components/Vote/index.ts create mode 100644 samples/react-multipage/src/webparts/poll/loc/en-us.js create mode 100644 samples/react-multipage/src/webparts/poll/loc/mystrings.d.ts create mode 100644 samples/react-multipage/src/webparts/poll/services/IPollService.ts create mode 100644 samples/react-multipage/src/webparts/poll/services/IVoteOption.ts create mode 100644 samples/react-multipage/src/webparts/poll/services/IVoteOptionItem.ts create mode 100644 samples/react-multipage/src/webparts/poll/services/IVoteResult.ts create mode 100644 samples/react-multipage/src/webparts/poll/services/MockPollService.ts create mode 100644 samples/react-multipage/src/webparts/poll/services/PollService.ts create mode 100644 samples/react-multipage/src/webparts/poll/services/index.ts create mode 100644 samples/react-multipage/src/webparts/poll/tests/Poll.test.ts create mode 100644 samples/react-multipage/tsconfig.json create mode 100644 samples/react-multipage/typings/@ms/odsp-webpack.d.ts create mode 100644 samples/react-multipage/typings/@ms/odsp.d.ts create mode 100644 samples/react-multipage/typings/assertion-error/assertion-error.d.ts create mode 100644 samples/react-multipage/typings/chai/chai.d.ts create mode 100644 samples/react-multipage/typings/combokeys/combokeys.d.ts create mode 100644 samples/react-multipage/typings/es6-collections/es6-collections.d.ts create mode 100644 samples/react-multipage/typings/es6-promise/es6-promise.d.ts create mode 100644 samples/react-multipage/typings/knockout/knockout.d.ts create mode 100644 samples/react-multipage/typings/lodash/lodash.d.ts create mode 100644 samples/react-multipage/typings/mocha/mocha.d.ts create mode 100644 samples/react-multipage/typings/node/node.d.ts create mode 100644 samples/react-multipage/typings/react/react-addons-shallow-compare.d.ts create mode 100644 samples/react-multipage/typings/react/react-addons-test-utils.d.ts create mode 100644 samples/react-multipage/typings/react/react-addons-update.d.ts create mode 100644 samples/react-multipage/typings/react/react-dom.d.ts create mode 100644 samples/react-multipage/typings/react/react.d.ts create mode 100644 samples/react-multipage/typings/systemjs/systemjs.d.ts create mode 100644 samples/react-multipage/typings/tsd.d.ts create mode 100644 samples/react-multipage/typings/whatwg-fetch/whatwg-fetch.d.ts diff --git a/samples/react-multipage/.editorconfig b/samples/react-multipage/.editorconfig new file mode 100644 index 000000000..8ffcdc4ec --- /dev/null +++ b/samples/react-multipage/.editorconfig @@ -0,0 +1,25 @@ +# EditorConfig helps developers define and maintain consistent +# coding styles between different editors and IDEs +# editorconfig.org + +root = true + + +[*] + +# change these settings to your own preference +indent_style = space +indent_size = 2 + +# we recommend you to keep these unchanged +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false + +[{package,bower}.json] +indent_style = space +indent_size = 2 \ No newline at end of file diff --git a/samples/react-multipage/.gitattributes b/samples/react-multipage/.gitattributes new file mode 100644 index 000000000..212566614 --- /dev/null +++ b/samples/react-multipage/.gitattributes @@ -0,0 +1 @@ +* text=auto \ No newline at end of file diff --git a/samples/react-multipage/.gitignore b/samples/react-multipage/.gitignore new file mode 100644 index 000000000..63c4ae010 --- /dev/null +++ b/samples/react-multipage/.gitignore @@ -0,0 +1,32 @@ +# Logs +logs +*.log +npm-debug.log* + +# Dependency directories +node_modules + +# Build generated files +dist +lib +solution +temp +*.spapp + +# Coverage directory used by tools like istanbul +coverage + +# OSX +.DS_Store + +# Visual Studio files +.ntvs_analysis.dat +.vs +bin +obj + +# Resx Generated Code +*.resx.ts + +# Styles Generated Code +*.scss.ts diff --git a/samples/react-multipage/.npmignore b/samples/react-multipage/.npmignore new file mode 100644 index 000000000..2c93a9384 --- /dev/null +++ b/samples/react-multipage/.npmignore @@ -0,0 +1,14 @@ +# Folders +.vscode +coverage +node_modules +sharepoint +src +temp + +# Files +*.csproj +.git* +.yo-rc.json +gulpfile.js +tsconfig.json diff --git a/samples/react-multipage/.vscode/settings.json b/samples/react-multipage/.vscode/settings.json new file mode 100644 index 000000000..72890dfce --- /dev/null +++ b/samples/react-multipage/.vscode/settings.json @@ -0,0 +1,23 @@ +{ + // The number of spaces a tab is equal to. + "editor.tabSize": 2, + + // When enabled, will trim trailing whitespace when you save a file. + "files.trimTrailingWhitespace": true, + + // Controls if the editor should automatically close brackets after opening them + "editor.autoClosingBrackets": false, + + // Configure glob patterns for excluding files and folders. + "search.exclude": { + "**/bower_components": true, + "**/node_modules": true, + "coverage": true, + "dist": true, + "lib-amd": true, + "lib": true, + "temp": true + } +, +"typescript.tsdk": "./node_modules/typescript/lib" +} diff --git a/samples/react-multipage/.vscode/tasks.json b/samples/react-multipage/.vscode/tasks.json new file mode 100644 index 000000000..5204908d6 --- /dev/null +++ b/samples/react-multipage/.vscode/tasks.json @@ -0,0 +1,34 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "0.1.0", + "command": "gulp", + "isShellCommand": true, + "showOutput": "always", + "args": [ + "--no-color" + ], + "tasks": [ + { + "taskName": "bundle", + "isBuildCommand": true, + "problemMatcher": [ + "$tsc" + ] + }, + { + "taskName": "test", + "isTestCommand": true, + "problemMatcher": [ + "$tsc" + ] + }, + { + "taskName": "serve", + "isWatching": true, + "problemMatcher": [ + "$tsc" + ] + } + ] +} diff --git a/samples/react-multipage/.yo-rc.json b/samples/react-multipage/.yo-rc.json new file mode 100644 index 000000000..7b5e4f4ca --- /dev/null +++ b/samples/react-multipage/.yo-rc.json @@ -0,0 +1,7 @@ +{ + "@microsoft/generator-sharepoint": { + "libraryName": "react-multipage", + "libraryId": "b9218e95-22b7-48ca-808f-beacd2444a1e", + "framework": "react" + } +} \ No newline at end of file diff --git a/samples/react-multipage/README.md b/samples/react-multipage/README.md new file mode 100644 index 000000000..d60ba2dbc --- /dev/null +++ b/samples/react-multipage/README.md @@ -0,0 +1,82 @@ +# React multi-page client-side web part + +## Summary + +Sample SharePoint Framework client-side web parts built using React illustrating building multi-page web parts. + +### Poll + +Sample poll web part allowing users to vote and view the results. + +![Poll web part built on the SharePoint Framework using React](./assets/poll-preview.gif) + +## Applies to + +* [SharePoint Framework Developer Preview](http://dev.office.com/sharepoint/docs/spfx/sharepoint-framework-overview) +* [Office 365 developer tenant](http://dev.office.com/sharepoint/docs/spfx/set-up-your-developer-tenant) + +## Solution + +Solution|Author(s) +--------|--------- +react-multipage|Waldek Mastykarz (MVP, Rencore, @waldekm) + +## Version history + +Version|Date|Comments +-------|----|-------- +1.0.0|November 15, 2016|Initial release + +## Disclaimer +**THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.** + +--- + +## Prerequisites + +- Site Collection created under the **/sites/** Managed Path + +## Minimal Path to Awesome + +### Poll web part + +- create list for the poll + - in SharePoint create a new list + - in the list add new column called `NumVotes` of type **Number** (you can change the name later if you want) + - in the list add a few items - each representing one of the vote options in your poll (for example for a poll about favorite JavaScript frameworks you would add items like _Angular_, _React_, _jQuery_, etc.) +- deploy SharePoint workbench + - clone this repo + - in the command line run + - `npm i` + - `gulp serve --nobrowser` + - from the **./temp** directory create a copy of the **workbench.html** file and rename it to **workbench.aspx** + - in the **workbench.aspx** file change the value of the **webAbsoluteUrl** property to the absolute URL of your SharePoint site + - upload the **workbench.aspx** file to a document library in your site +- use the web part + - in your web browser navigate to the **workbench.aspx** page uploaded in your SharePoint site + - add the Poll web part to the canvas + - in the configuration specify the **Poll title** and optionally the **Poll description**. Also specify the title of your poll list + - confirm the changes by clicking the **Apply** button + - select one of the vote options and click the **Vote** button to submit your vote + +![Poll web part built on the SharePoint Framework using React](./assets/poll-preview.gif) + +## Features + +This project contains sample client-side web parts built on the SharePoint Framework using React illustrating working with multi-page web parts. + +This sample illustrates the following concepts on top of the SharePoint Framework: + +- using React for building SharePoint Framework client-side web parts +- using React components for building multi-page web parts +- using React spread operator for passing multiple properties to React components +- conditionally rendering React components +- managing state in a parent component +- navigating between the different pages without changing the URL +- styling React applications using Office UI Fabric +- using non-reactive web part property pane +- chaining multiple ES6 promises +- reading and updating SharePoint list items using the SharePoint Framework HttpClient +- showing charts using [Chart.js](http://www.chartjs.org) and [React wrapper for Chart.js](https://github.com/gor181/react-chartjs-2) + + \ No newline at end of file diff --git a/samples/react-multipage/assets/poll-preview.gif b/samples/react-multipage/assets/poll-preview.gif new file mode 100644 index 0000000000000000000000000000000000000000..202d9d62817c7832dbb088b38e326d917a7b8571 GIT binary patch literal 633205 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�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 iRa*cjzyio5YAT(;Pg==V;MheK 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�m??-Z90b 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", + "container": "react-multipage", + "accessKey": "" +} \ No newline at end of file diff --git a/samples/react-multipage/config/package-solution.json b/samples/react-multipage/config/package-solution.json new file mode 100644 index 000000000..ef70c4700 --- /dev/null +++ b/samples/react-multipage/config/package-solution.json @@ -0,0 +1,10 @@ +{ + "solution": { + "name": "react-multipage-client-side-solution", + "id": "b9218e95-22b7-48ca-808f-beacd2444a1e", + "version": "1.0.0.0" + }, + "paths": { + "zippedPackage": "solution/react-multipage.spapp" + } +} diff --git a/samples/react-multipage/config/prepare-deploy.json b/samples/react-multipage/config/prepare-deploy.json new file mode 100644 index 000000000..6aca63656 --- /dev/null +++ b/samples/react-multipage/config/prepare-deploy.json @@ -0,0 +1,3 @@ +{ + "deployCdnPath": "temp/deploy" +} diff --git a/samples/react-multipage/config/serve.json b/samples/react-multipage/config/serve.json new file mode 100644 index 000000000..087899637 --- /dev/null +++ b/samples/react-multipage/config/serve.json @@ -0,0 +1,9 @@ +{ + "port": 4321, + "initialPage": "https://localhost:5432/workbench", + "https": true, + "api": { + "port": 5432, + "entryPath": "node_modules/@microsoft/sp-webpart-workbench/lib/api/" + } +} diff --git a/samples/react-multipage/config/tslint.json b/samples/react-multipage/config/tslint.json new file mode 100644 index 000000000..bf3362c87 --- /dev/null +++ b/samples/react-multipage/config/tslint.json @@ -0,0 +1,51 @@ +{ + // Display errors as warnings + "displayAsWarning": true, + // The TSLint task may have been configured with several custom lint rules + // before this config file is read (for example lint rules from the tslint-microsoft-contrib + // project). If true, this flag will deactivate any of these rules. + "removeExistingRules": true, + // When true, the TSLint task is configured with some default TSLint "rules.": + "useDefaultConfigAsBase": false, + // Since removeExistingRules=true and useDefaultConfigAsBase=false, there will be no lint rules + // which are active, other than the list of rules below. + "lintConfig": { + // Opt-in to Lint rules which help to eliminate bugs in JavaScript + "rules": { + "class-name": false, + "export-name": false, + "forin": false, + "label-position": false, + "label-undefined": false, + "member-access": true, + "no-arg": false, + "no-console": false, + "no-construct": false, + "no-duplicate-case": true, + "no-duplicate-key": false, + "no-duplicate-variable": true, + "no-eval": false, + "no-function-expression": true, + "no-internal-module": true, + "no-shadowed-variable": true, + "no-switch-case-fall-through": true, + "no-unnecessary-semicolons": true, + "no-unused-expression": true, + "no-unused-imports": true, + "no-unused-variable": true, + "no-unreachable": true, + "no-use-before-declare": true, + "no-with-statement": true, + "semicolon": true, + "trailing-comma": false, + "typedef": false, + "typedef-whitespace": false, + "use-named-parameter": true, + "valid-typeof": true, + "variable-name": false, + "whitespace": false, + "prefer-const": true, + "a11y-role": true + } + } +} \ No newline at end of file diff --git a/samples/react-multipage/config/write-manifests.json b/samples/react-multipage/config/write-manifests.json new file mode 100644 index 000000000..0a4bafb06 --- /dev/null +++ b/samples/react-multipage/config/write-manifests.json @@ -0,0 +1,3 @@ +{ + "cdnBasePath": "" +} \ No newline at end of file diff --git a/samples/react-multipage/gulpfile.js b/samples/react-multipage/gulpfile.js new file mode 100644 index 000000000..7d36ddb1c --- /dev/null +++ b/samples/react-multipage/gulpfile.js @@ -0,0 +1,6 @@ +'use strict'; + +const gulp = require('gulp'); +const build = require('@microsoft/sp-build-web'); + +build.initialize(gulp); diff --git a/samples/react-multipage/package.json b/samples/react-multipage/package.json new file mode 100644 index 000000000..5339cb972 --- /dev/null +++ b/samples/react-multipage/package.json @@ -0,0 +1,31 @@ +{ + "name": "react-multipage", + "version": "1.0.0", + "private": true, + "engines": { + "node": ">=0.10.0" + }, + "author": { + "name": "Waldek Mastykarz", + "url": "https://blog.mastykarz.nl" + }, + "dependencies": { + "@microsoft/sp-client-base": "~0.4.0", + "@microsoft/sp-client-preview": "~0.5.0", + "office-ui-fabric-react": "0.36.0", + "react": "0.14.8", + "react-chartjs-2": "^1.5.1", + "react-dom": "0.14.8" + }, + "devDependencies": { + "@microsoft/sp-build-web": "~0.7.0", + "@microsoft/sp-module-interfaces": "~0.4.0", + "@microsoft/sp-webpart-workbench": "~0.5.0", + "gulp": "~3.9.1" + }, + "scripts": { + "build": "gulp bundle", + "clean": "gulp nuke", + "test": "gulp test" + } +} diff --git a/samples/react-multipage/react-multipage.njsproj b/samples/react-multipage/react-multipage.njsproj new file mode 100644 index 000000000..73f25c19b --- /dev/null +++ b/samples/react-multipage/react-multipage.njsproj @@ -0,0 +1,86 @@ + + + + Debug + 2.0 + {b9218e95-22b7-48ca-808f-beacd2444a1e} + + ProjectFiles + node_modules\gulp\bin\gulp.js + . + . + {3AF33F2E-1136-4D97-BBB7-1795711AC8B8};{349c5851-65df-11da-9384-00065b846f21};{9092AA53-FB77-4645-B42D-1CCCA6BD08BD} + true + CommonJS + false + 11.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + serve + True + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + False + True + 0 + / + http://localhost:48022/ + False + True + http://localhost:1337 + False + + + + + + + CurrentPage + True + False + False + False + + + + + + + + + False + False + + + + + \ No newline at end of file diff --git a/samples/react-multipage/src/tests.js b/samples/react-multipage/src/tests.js new file mode 100644 index 000000000..cb4bb5cf2 --- /dev/null +++ b/samples/react-multipage/src/tests.js @@ -0,0 +1,5 @@ +var context = require.context('.', true, /.+\.test\.js?$/); + +context.keys().forEach(context); + +module.exports = context; diff --git a/samples/react-multipage/src/webparts/poll/IPollWebPartProps.ts b/samples/react-multipage/src/webparts/poll/IPollWebPartProps.ts new file mode 100644 index 000000000..4cc33db30 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/IPollWebPartProps.ts @@ -0,0 +1,5 @@ +export interface IPollWebPartProps { + listName: string; + pollTitle: string; + pollDescription: string; +} diff --git a/samples/react-multipage/src/webparts/poll/Poll.module.scss b/samples/react-multipage/src/webparts/poll/Poll.module.scss new file mode 100644 index 000000000..0166b7172 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/Poll.module.scss @@ -0,0 +1,3 @@ +.poll { + font-size: inherit; +} diff --git a/samples/react-multipage/src/webparts/poll/PollWebPart.manifest.json b/samples/react-multipage/src/webparts/poll/PollWebPart.manifest.json new file mode 100644 index 000000000..1a63ab5ad --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/PollWebPart.manifest.json @@ -0,0 +1,21 @@ +{ + "$schema": "../../../node_modules/@microsoft/sp-module-interfaces/lib/manifestSchemas/jsonSchemas/clientSideComponentManifestSchema.json", + + "id": "f357034f-6c58-425e-b854-5decc9058418", + "componentType": "WebPart", + "version": "0.0.1", + "manifestVersion": 2, + + "preconfiguredEntries": [{ + "groupId": "f357034f-6c58-425e-b854-5decc9058418", + "group": { "default": "Under Development" }, + "title": { "default": "Poll" }, + "description": { "default": "Vote and see the results" }, + "officeFabricIconFontName": "CheckboxComposite", + "properties": { + "listName": "", + "pollTitle": "", + "pollDescription": "" + } + }] +} diff --git a/samples/react-multipage/src/webparts/poll/PollWebPart.ts b/samples/react-multipage/src/webparts/poll/PollWebPart.ts new file mode 100644 index 000000000..190c06aa4 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/PollWebPart.ts @@ -0,0 +1,106 @@ +import * as React from 'react'; +import * as ReactDom from 'react-dom'; +import { + BaseClientSideWebPart, + IPropertyPaneSettings, + IWebPartContext, + PropertyPaneTextField +} from '@microsoft/sp-client-preview'; + +import * as strings from 'pollStrings'; +import { Main, IMainProps } from './components/Main'; +import { IPollWebPartProps } from './IPollWebPartProps'; +import { IPollService, PollService } from './services'; + +export default class PollWebPart extends BaseClientSideWebPart { + private pollService: IPollService; + + public constructor(context: IWebPartContext) { + super(context); + + this.configureWebPart = this.configureWebPart.bind(this); + this.pollService = new PollService(this.context.httpClient, this.context.pageContext.web.serverRelativeUrl); + } + + public render(): void { + const element: React.ReactElement = React.createElement(Main, { + listName: this.properties.listName, + pollTitle: this.properties.pollTitle, + pollDescription: this.properties.pollDescription, + needsConfiguration: this.needsConfiguration(), + displayMode: this.displayMode, + configureWebPart: this.configureWebPart, + pollService: this.pollService + }); + + ReactDom.render(element, this.domElement); + } + + protected get propertyPaneSettings(): IPropertyPaneSettings { + return { + pages: [ + { + header: { + description: strings.PropertyPaneDescription + }, + groups: [ + { + groupName: strings.ViewGroupName, + groupFields: [ + PropertyPaneTextField('pollTitle', { + label: strings.PollTitleFieldLabel, + onGetErrorMessage: this.validatePollTitle + }), + PropertyPaneTextField('pollDescription', { + label: strings.PollDescriptionFieldLabel + }) + ] + }, + { + groupName: strings.DataGroupName, + groupFields: [ + PropertyPaneTextField('listName', { + label: strings.ListNameFieldLabel, + onGetErrorMessage: this.validateListName + }) + ] + } + ] + } + ] + }; + } + + private validatePollTitle(pollTitle: string): string { + if (pollTitle.trim().length === 0) { + return 'Please enter title of this poll'; + } + else { + return ''; + } + } + + private validateListName(listName: string): string { + if (listName.trim().length === 0) { + return 'Please enter the name of the list'; + } + else { + return ''; + } + } + + protected get disableReactivePropertyChanges(): boolean { + return true; + } + + private needsConfiguration(): boolean { + return this.properties.listName === null || + this.properties.listName.trim().length === 0 || + this.properties.pollTitle === null || + this.properties.pollTitle.trim().length === 0; + } + + private configureWebPart(): void { + this.configureStart(); + } +} diff --git a/samples/react-multipage/src/webparts/poll/components/Config/Config.tsx b/samples/react-multipage/src/webparts/poll/components/Config/Config.tsx new file mode 100644 index 000000000..d1c9472ed --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Config/Config.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { Fabric } from 'office-ui-fabric-react'; +import { DisplayMode } from '@microsoft/sp-client-base'; +import { Placeholder } from '@microsoft/sp-client-preview'; +import { IConfigProps } from './IConfigProps'; + +export class Config extends React.Component { + public render(): JSX.Element { + return ( + + { this.props.displayMode === DisplayMode.Edit && + + } + { this.props.displayMode === DisplayMode.Read && + + } + + ); + } +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Config/IConfigProps.ts b/samples/react-multipage/src/webparts/poll/components/Config/IConfigProps.ts new file mode 100644 index 000000000..99a596171 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Config/IConfigProps.ts @@ -0,0 +1,6 @@ +import { DisplayMode } from '@microsoft/sp-client-base'; + +export interface IConfigProps { + displayMode: DisplayMode; + configure: () => void; +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Config/index.ts b/samples/react-multipage/src/webparts/poll/components/Config/index.ts new file mode 100644 index 000000000..350d5a7e9 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Config/index.ts @@ -0,0 +1 @@ +export * from './Config'; \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Main/IMainProps.ts b/samples/react-multipage/src/webparts/poll/components/Main/IMainProps.ts new file mode 100644 index 000000000..07dbd7e0e --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Main/IMainProps.ts @@ -0,0 +1,10 @@ +import { IPollWebPartProps } from '../../IPollWebPartProps'; +import { DisplayMode } from '@microsoft/sp-client-base'; +import { IPollService } from '../../services'; + +export interface IMainProps extends IPollWebPartProps { + needsConfiguration: boolean; + configureWebPart: () => void; + displayMode: DisplayMode; + pollService: IPollService; +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Main/Main.tsx b/samples/react-multipage/src/webparts/poll/components/Main/Main.tsx new file mode 100644 index 000000000..d4e3e428b --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Main/Main.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IMainProps } from './IMainProps'; +import { Config } from '../Config'; +import { Poll } from '../Poll'; + +import styles from '../../Poll.module.scss'; + +export class Main extends React.Component { + constructor(props: IMainProps) { + super(props); + } + + public render(): JSX.Element { + const { needsConfiguration, pollTitle, pollDescription, configureWebPart } = this.props; + + return ( +
+ { needsConfiguration && + + } + { needsConfiguration === false && + + } +
+ ); + } +} diff --git a/samples/react-multipage/src/webparts/poll/components/Main/index.ts b/samples/react-multipage/src/webparts/poll/components/Main/index.ts new file mode 100644 index 000000000..118e55c2d --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Main/index.ts @@ -0,0 +1,2 @@ +export * from './Main'; +export * from './IMainProps'; \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Poll/IPollProps.ts b/samples/react-multipage/src/webparts/poll/components/Poll/IPollProps.ts new file mode 100644 index 000000000..357fe6e2e --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Poll/IPollProps.ts @@ -0,0 +1,8 @@ +import { IPollService } from '../../services'; + +export interface IPollProps { + title: string; + description: string; + listName: string; + pollService: IPollService; +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Poll/IPollState.ts b/samples/react-multipage/src/webparts/poll/components/Poll/IPollState.ts new file mode 100644 index 000000000..e45789286 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Poll/IPollState.ts @@ -0,0 +1,3 @@ +export interface IPollState { + showResults: boolean; +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Poll/Poll.tsx b/samples/react-multipage/src/webparts/poll/components/Poll/Poll.tsx new file mode 100644 index 000000000..302ad6e41 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Poll/Poll.tsx @@ -0,0 +1,48 @@ +import * as React from 'react'; +import { IPollProps } from './IPollProps'; +import { IPollState } from './IPollState'; +import { Vote } from '../Vote'; +import { Results } from '../Results'; + +export class Poll extends React.Component { + constructor(props: IPollProps) { + super(props); + + this.state = { + showResults: false + }; + + this.voted = this.voted.bind(this); + } + + protected componentWillReceiveProps(nextProps: IPollProps, nextContext: any): void { + this.setState({ + showResults: false + }); + } + + public render(): JSX.Element { + const { title, description } = this.props; + const showResults: boolean = this.state.showResults; + + return ( +
+
{title}
+
{description}
+
+ { showResults === false && + + } + { showResults && + + } +
+ ); + } + + private voted(): void { + this.setState({ + showResults: true + }); + } +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Poll/index.ts b/samples/react-multipage/src/webparts/poll/components/Poll/index.ts new file mode 100644 index 000000000..983462b70 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Poll/index.ts @@ -0,0 +1 @@ +export * from './Poll'; \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Results/IResultsProps.ts b/samples/react-multipage/src/webparts/poll/components/Results/IResultsProps.ts new file mode 100644 index 000000000..9a08aef08 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Results/IResultsProps.ts @@ -0,0 +1,6 @@ +import { IPollService } from '../../services'; + +export interface IResultsProps { + listName: string; + pollService: IPollService; +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Results/IResultsState.ts b/samples/react-multipage/src/webparts/poll/components/Results/IResultsState.ts new file mode 100644 index 000000000..850addd19 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Results/IResultsState.ts @@ -0,0 +1,7 @@ +import { IVoteResult } from '../../services'; + +export interface IResultsState { + loading: boolean; + error: string; + results: IVoteResult[]; +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Results/Results.tsx b/samples/react-multipage/src/webparts/poll/components/Results/Results.tsx new file mode 100644 index 000000000..c9848efd3 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Results/Results.tsx @@ -0,0 +1,160 @@ +import * as React from 'react'; +import { IResultsProps } from './IResultsProps'; +import { IResultsState } from './IResultsState'; +import { Spinner } from 'office-ui-fabric-react'; +import { IVoteResult } from '../../services'; +import { HorizontalBar } from 'react-chartjs-2'; +const defaults = require('react-chartjs-2').defaults; +import { merge } from '@microsoft/sp-lodash-subset'; + +interface IColorInfo { + backgroundColor: string; + pointBackgroundColor: string; + pointHoverBackgroundColor: string; + borderColor: string; + pointBorderColor: string; + pointHoverBorderColor: string; +} + +export class Results extends React.Component { + private useExcanvas: boolean = typeof (window as any).G_vmlCanvasManager === 'object' && + (window as any).G_vmlCanvasManager !== null && + typeof (window as any).G_vmlCanvasManager.initElement === 'function'; + private convertedColors: IColorInfo[] = undefined; + private data: { labels: string[], datasets: any[] }; + private options: any; + + constructor(props: IResultsProps) { + super(props); + + this.state = { + loading: true, + error: undefined, + results: [] + }; + + this.convertColor = this.convertColor.bind(this); + } + + protected componentDidMount(): void { + // from angular-chart.js + defaults.global.tooltips.mode = 'label'; + defaults.global.elements.line.borderWidth = 2; + defaults.global.elements.rectangle.borderWidth = 2; + defaults.global.legend.display = false; + defaults.global.colors = [ + '#97BBCD', // blue + '#DCDCDC', // light grey + '#F7464A', // red + '#46BFBD', // green + '#FDB45C', // yellow + '#949FB1', // grey + '#4D5360' // dark grey + ]; + this.convertedColors = defaults.global.colors.map(this.convertColor); + // -- from angular-chart.js + + this.data = { + labels: [], + datasets: [merge({}, this.convertedColors[0], { + label: 'Number of votes', + data: [] + })] + }; + this.options = { + scales: { + xAxes: [{ + gridLines: { + display: false + }, + scaleLabel: { + display: true, + labelString: 'Number of votes' + } + }] + } + }; + + this.props.pollService.getResults(this.props.listName) + .then((results: IVoteResult[]): void => { + this.setState((prevState: IResultsState, props: IResultsProps): IResultsState => { + prevState.results = results; + prevState.loading = false; + return prevState; + }); + }, (error: any): void => { + this.setState((prevState: IResultsState, props: IResultsProps): IResultsState => { + prevState.error = error.data['odata.error'].message.value; + prevState.loading = false; + return prevState; + }); + }); + } + + public render(): JSX.Element { + if (this.state.results.length > 0) { + this.data.labels.length = 0; + this.data.datasets[0].data.length = 0; + + for (let i: number = 0; i < this.state.results.length; i++) { + const result: IVoteResult = this.state.results[i]; + this.data.labels.push(result.label); + this.data.datasets[0].data.push(result.numVotes); + } + } + + return ( +
+ {this.state.loading && + + } + {this.state.loading === false && + + } +
+ ); + } + + // from angular-chart.js + private convertColor(color: IColorInfo | string): IColorInfo { + if (typeof color === 'object' && color !== null) return color; + if (typeof color === 'string' && color[0] === '#') return this.getColor(Results.hexToRgb(color.substr(1))); + return this.getRandomColor(); + } + + private getRandomColor(): IColorInfo { + const color: number[] = [Results.getRandomInt(0, 255), Results.getRandomInt(0, 255), Results.getRandomInt(0, 255)]; + return this.getColor(color); + } + + private getColor(color: number[]): IColorInfo { + return { + backgroundColor: this.rgba(color, 0.2), + pointBackgroundColor: this.rgba(color, 1), + pointHoverBackgroundColor: this.rgba(color, 0.8), + borderColor: this.rgba(color, 1), + pointBorderColor: '#fff', + pointHoverBorderColor: this.rgba(color, 1) + }; + } + + private static getRandomInt(min: number, max: number): number { + return Math.floor(Math.random() * (max - min + 1)) + min; + } + + private rgba(color: number[], alpha: number): string { + // rgba not supported by IE8 + return this.useExcanvas ? 'rgb(' + color.join(',') + ')' : 'rgba(' + color.concat(alpha).join(',') + ')'; + } + + // Credit: http://stackoverflow.com/a/11508164/1190235 + private static hexToRgb(hex: string): number[] { + const bigint: number = parseInt(hex, 16), + r: number = (bigint >> 16) & 255, + g: number = (bigint >> 8) & 255, + b: number = bigint & 255; + + return [r, g, b]; + } + // -- from angular-chart.js +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Results/index.ts b/samples/react-multipage/src/webparts/poll/components/Results/index.ts new file mode 100644 index 000000000..9b0fb32aa --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Results/index.ts @@ -0,0 +1 @@ +export * from './Results'; \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Vote/IVoteProps.ts b/samples/react-multipage/src/webparts/poll/components/Vote/IVoteProps.ts new file mode 100644 index 000000000..f4c49c6ef --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Vote/IVoteProps.ts @@ -0,0 +1,7 @@ +import { IPollService } from '../../services/IPollService'; + +export interface IVoteProps { + onVoted: () => void; + listName: string; + pollService: IPollService; +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Vote/IVoteState.ts b/samples/react-multipage/src/webparts/poll/components/Vote/IVoteState.ts new file mode 100644 index 000000000..fc91655d8 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Vote/IVoteState.ts @@ -0,0 +1,9 @@ +import { IVoteOption } from '../../services'; + +export interface IVoteState { + loading: boolean; + voteOptions: IVoteOption[]; + voting: boolean; + error: string; + voteOptionId: number; +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Vote/Vote.tsx b/samples/react-multipage/src/webparts/poll/components/Vote/Vote.tsx new file mode 100644 index 000000000..6f7e3285e --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Vote/Vote.tsx @@ -0,0 +1,101 @@ +import * as React from 'react'; +import { IVoteProps } from './IVoteProps'; +import { IVoteState } from './IVoteState'; +import { IVoteOption } from '../../services'; +import { Spinner, Button, ButtonType, ChoiceGroup, IChoiceGroupOption } from 'office-ui-fabric-react'; + +export class Vote extends React.Component { + constructor(props: IVoteProps) { + super(props); + + this.state = { + loading: true, + voteOptions: [], + voting: false, + error: undefined, + voteOptionId: undefined + }; + + this.vote = this.vote.bind(this); + this.selectVoteOption = this.selectVoteOption.bind(this); + } + + protected componentDidMount(): void { + this.props.pollService.getVoteOptions(this.props.listName) + .then((voteOptions: IVoteOption[]): void => { + this.setState((prevState: IVoteState, props: IVoteProps): IVoteState => { + prevState.voteOptions = voteOptions; + prevState.loading = false; + return prevState; + }); + }, (error: any): void => { + this.setState((prevState: IVoteState, props: IVoteProps): IVoteState => { + prevState.loading = false; + prevState.error = error.data['odata.error'].message.value; + return prevState; + }); + }); + } + + public render(): JSX.Element { + const options: IChoiceGroupOption[] = this.state.voteOptions.map((value: IVoteOption, index: number, array: IVoteOption[]): IChoiceGroupOption => { + return { + key: value.id.toString(), + text: value.label + }; + }); + + return ( +
+ {this.state.loading && + + } + {this.state.loading === false && + this.state.voteOptions.length > 0 && +
+ +
+
+
+ } + {this.state.voting && + + } + {this.state.error !== undefined && +
+ An error has occurred while loading vote options: {this.state.error} +
+ } +
+ ); + } + + private selectVoteOption(option: IChoiceGroupOption, evt?: React.SyntheticEvent): void { + this.setState((prevState: IVoteState, props: IVoteProps): IVoteState => { + prevState.voteOptionId = parseInt(option.key); + return prevState; + }); + } + + private vote(): void { + this.setState((prevState: IVoteState, props: IVoteProps): IVoteState => { + prevState.error = undefined; + prevState.voting = true; + return prevState; + }); + this.props.pollService.vote(this.state.voteOptionId, this.props.listName) + .then((): void => { + this.setState((prevState: IVoteState, props: IVoteProps): IVoteState => { + prevState.voting = false; + return prevState; + }); + this.props.onVoted(); + }, (error: any): void => { + this.setState((prevState: IVoteState, props: IVoteProps): IVoteState => { + prevState.voting = false; + prevState.error = error.data ? error.data['odata.error'].message.value : error; + return prevState; + }); + }); + } +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/components/Vote/index.ts b/samples/react-multipage/src/webparts/poll/components/Vote/index.ts new file mode 100644 index 000000000..c864744ee --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/components/Vote/index.ts @@ -0,0 +1 @@ +export * from './Vote'; \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/loc/en-us.js b/samples/react-multipage/src/webparts/poll/loc/en-us.js new file mode 100644 index 000000000..13d5ad583 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/loc/en-us.js @@ -0,0 +1,10 @@ +define([], function() { + return { + "PropertyPaneDescription": "Configure properties of this poll", + "DataGroupName": "Data", + "ViewGroupName": "View", + "ListNameFieldLabel": "List name", + "PollTitleFieldLabel": "Poll title", + "PollDescriptionFieldLabel": "Poll description (optional)" + } +}); \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/loc/mystrings.d.ts b/samples/react-multipage/src/webparts/poll/loc/mystrings.d.ts new file mode 100644 index 000000000..222310e69 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/loc/mystrings.d.ts @@ -0,0 +1,13 @@ +declare interface IPollStrings { + PropertyPaneDescription: string; + DataGroupName: string; + ViewGroupName: string; + ListNameFieldLabel: string; + PollTitleFieldLabel: string; + PollDescriptionFieldLabel: string; +} + +declare module 'pollStrings' { + const strings: IPollStrings; + export = strings; +} diff --git a/samples/react-multipage/src/webparts/poll/services/IPollService.ts b/samples/react-multipage/src/webparts/poll/services/IPollService.ts new file mode 100644 index 000000000..73d90fb92 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/services/IPollService.ts @@ -0,0 +1,8 @@ +import { IVoteOption } from './IVoteOption'; +import { IVoteResult } from './IVoteResult'; + +export interface IPollService { + getVoteOptions: (listName: string) => Promise; + vote: (voteOptionId: number, listName: string) => Promise<{}>; + getResults: (listName: string) => Promise; +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/services/IVoteOption.ts b/samples/react-multipage/src/webparts/poll/services/IVoteOption.ts new file mode 100644 index 000000000..38c48e8d3 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/services/IVoteOption.ts @@ -0,0 +1,4 @@ +export interface IVoteOption { + id: number; + label: string; +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/services/IVoteOptionItem.ts b/samples/react-multipage/src/webparts/poll/services/IVoteOptionItem.ts new file mode 100644 index 000000000..3a0ecdc2f --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/services/IVoteOptionItem.ts @@ -0,0 +1,5 @@ +export interface IVoteOptionItem { + Id: number; + Title: string; + NumVotes?: number; +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/services/IVoteResult.ts b/samples/react-multipage/src/webparts/poll/services/IVoteResult.ts new file mode 100644 index 000000000..a4b0ef2f7 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/services/IVoteResult.ts @@ -0,0 +1,5 @@ +import { IVoteOption } from './IVoteOption'; + +export interface IVoteResult extends IVoteOption { + numVotes: number; +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/services/MockPollService.ts b/samples/react-multipage/src/webparts/poll/services/MockPollService.ts new file mode 100644 index 000000000..8f9d3945f --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/services/MockPollService.ts @@ -0,0 +1,55 @@ +import { IPollService } from './IPollService'; +import { IVoteOption } from './IVoteOption'; +import { IVoteResult } from './IVoteResult'; + +export class MockPollService implements IPollService { + private poll: IVoteResult[]; + + constructor() { + this.poll = [ + { + id: 1, + label: 'Angular', + numVotes: 0 + }, + { + id: 2, + label: 'React', + numVotes: 0 + } + ]; + } + + public getVoteOptions(listName: string): Promise { + return new Promise((resolve: (voteOptions: IVoteOption[]) => void, reject: (error: any) => void): void => { + resolve(this.poll); + }); + } + + public vote(voteOptionId: number, listName: string): Promise<{}> { + return new Promise<{}>((resolve: () => void, reject: (error: any) => void): void => { + let voted: boolean = false; + + for (let i: number = 0; i < this.poll.length; i++) { + if (this.poll[i].id === voteOptionId) { + this.poll[i].numVotes += 1; + voted = true; + break; + } + } + + if (voted) { + resolve(); + } + else { + reject('Invalid vote option'); + } + }); + } + + public getResults(listName: string): Promise { + return new Promise((resolve: (results: IVoteResult[]) => void, reject: (error: any) => void): void => { + resolve(this.poll); + }); + } +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/services/PollService.ts b/samples/react-multipage/src/webparts/poll/services/PollService.ts new file mode 100644 index 000000000..292fb2f97 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/services/PollService.ts @@ -0,0 +1,131 @@ +import { IPollService, IVoteOption, IVoteResult, IVoteOptionItem } from '../services'; +import { HttpClient } from '@microsoft/sp-client-base'; + +export class PollService implements IPollService { + + constructor(private httpClient: HttpClient, private serverRelativeSiteUrl: string) { + } + + public getVoteOptions(listName: string): Promise { + return new Promise((resolve: (voteOptions: IVoteOption[]) => void, reject: (error: any) => void): void => { + this.httpClient.get(this.serverRelativeSiteUrl + `/_api/web/lists/getByTitle('${listName}')/items?$select=Id,Title`, { + headers: { + 'Accept': 'application/json;odata=nometadata', + 'odata-version': '' + } + }) + .then((response: Response): Promise<{ value: IVoteOptionItem[] }> => { + return response.json(); + }) + .then((voteOptionItems: { value: IVoteOptionItem[] }): void => { + const voteOptions: IVoteOption[] = []; + for (let i: number = 0; i < voteOptionItems.value.length; i++) { + voteOptions.push({ + id: voteOptionItems.value[i].Id, + label: voteOptionItems.value[i].Title + }); + } + resolve(voteOptions); + }, (error: any): void => { + reject(error); + }); + }); + } + + public vote(voteOptionId: number, listName: string): Promise<{}> { + return new Promise<{}>((resolve: () => void, reject: (error: any) => void): void => { + let listItemEntityTypeName: string = undefined; + let etag: string = undefined; + + this.getListItemEntityTypeName(listName) + .then((itemEntityTypeName: string): Promise => { + listItemEntityTypeName = itemEntityTypeName; + + return this.httpClient.get(this.serverRelativeSiteUrl + `/_api/web/lists/getByTitle('${listName}')/items('${voteOptionId}')?$select=Id,NumVotes`, { + headers: { + 'Accept': 'application/json;odata=nometadata', + 'odata-version': '' + } + }); + }) + .then((response: Response): Promise => { + etag = response.headers.get('ETag'); + return response.json(); + }) + .then((voteOptionItem: IVoteOptionItem): Promise => { + const body: string = JSON.stringify({ + '__metadata': { + 'type': listItemEntityTypeName + }, + 'NumVotes': voteOptionItem.NumVotes && !isNaN(voteOptionItem.NumVotes) ? voteOptionItem.NumVotes+1 : 1 + }); + return this.httpClient.post(this.serverRelativeSiteUrl + `/_api/web/lists/getbytitle('${listName}')/items(${voteOptionItem.Id})`, { + headers: { + 'Accept': 'application/json;odata=nometadata', + 'Content-type': 'application/json;odata=verbose', + 'odata-version': '', + 'IF-MATCH': etag, + 'X-HTTP-Method': 'MERGE' + }, + body: body + }); + }) + .then((response: Response): void => { + if (response.ok) { + resolve(); + } + else { + reject(response.statusText); + } + }, (error: any): void => { + reject(error); + }); + }); + } + + public getResults(listName: string): Promise { + return new Promise((resolve: (results: IVoteResult[]) => void, reject: (error: any) => void): void => { + this.httpClient.get(this.serverRelativeSiteUrl + `/_api/web/lists/getByTitle('${listName}')/items?$select=Id,Title,NumVotes`, { + headers: { + 'Accept': 'application/json;odata=nometadata', + 'odata-version': '' + } + }) + .then((response: Response): Promise<{ value: IVoteOptionItem[] }> => { + return response.json(); + }) + .then((voteResultItems: { value: IVoteOptionItem[] }): void => { + const voteResults: IVoteResult[] = []; + for (let i: number = 0; i < voteResultItems.value.length; i++) { + voteResults.push({ + id: voteResultItems.value[i].Id, + label: voteResultItems.value[i].Title, + numVotes: voteResultItems.value[i].NumVotes + }); + } + resolve(voteResults); + }, (error: any): void => { + reject(error); + }); + }); + } + + private getListItemEntityTypeName(listName: string): Promise { + return new Promise((resolve: (listItemEntityTypeName: string) => void, reject: (error: any) => void): void => { + this.httpClient.post(this.serverRelativeSiteUrl + `/_api/web/lists/getByTitle('${listName}')?$select=ListItemEntityTypeFullName`, { + headers: { + 'Accept': 'application/json;odata=nometadata', + 'odata-version': '' + } + }) + .then((response: Response): Promise<{ ListItemEntityTypeFullName: string }> => { + return response.json(); + }) + .then((response: { ListItemEntityTypeFullName: string }): void => { + resolve(response.ListItemEntityTypeFullName); + }, (error: any): void => { + reject(error); + }); + }); + } +} \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/services/index.ts b/samples/react-multipage/src/webparts/poll/services/index.ts new file mode 100644 index 000000000..96108e217 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/services/index.ts @@ -0,0 +1,6 @@ +export * from './IPollService'; +export * from './IVoteOption'; +export * from './IVoteResult'; +export * from './PollService'; +export * from './MockPollService'; +export * from './IVoteOptionItem'; \ No newline at end of file diff --git a/samples/react-multipage/src/webparts/poll/tests/Poll.test.ts b/samples/react-multipage/src/webparts/poll/tests/Poll.test.ts new file mode 100644 index 000000000..41cc9bcf1 --- /dev/null +++ b/samples/react-multipage/src/webparts/poll/tests/Poll.test.ts @@ -0,0 +1,7 @@ +import * as assert from 'assert'; + +describe('PollWebPart', () => { + it('should do something', () => { + assert.ok(true); + }); +}); diff --git a/samples/react-multipage/tsconfig.json b/samples/react-multipage/tsconfig.json new file mode 100644 index 000000000..98c8662a9 --- /dev/null +++ b/samples/react-multipage/tsconfig.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "jsx": "react", + "declaration": true, + "sourceMap": true + } +} diff --git a/samples/react-multipage/typings/@ms/odsp-webpack.d.ts b/samples/react-multipage/typings/@ms/odsp-webpack.d.ts new file mode 100644 index 000000000..f2b3b03df --- /dev/null +++ b/samples/react-multipage/typings/@ms/odsp-webpack.d.ts @@ -0,0 +1,13 @@ +// Type definitions for webpack in Microsoft ODSP projects +// Project: ODSP-WEBPACK + +/* + * This definition of webpack require overrides all other definitions of require in our toolchain + * Make sure all other definitions of require are commented out e.g. in node.d.ts + */ +declare var require: { + (path: string): any; + (paths: string[], callback: (...modules: any[]) => void): void; + resolve: (id: string) => string; + ensure: (paths: string[], callback: (require: (path: string) => T) => void, path: string) => void; +}; \ No newline at end of file diff --git a/samples/react-multipage/typings/@ms/odsp.d.ts b/samples/react-multipage/typings/@ms/odsp.d.ts new file mode 100644 index 000000000..ae3334fe0 --- /dev/null +++ b/samples/react-multipage/typings/@ms/odsp.d.ts @@ -0,0 +1,10 @@ +// Type definitions for Microsoft ODSP projects +// Project: ODSP + +/// + +/* Global definition for DEBUG builds */ +declare const DEBUG: boolean; + +/* Global definition for UNIT_TEST builds */ +declare const UNIT_TEST: boolean; \ No newline at end of file diff --git a/samples/react-multipage/typings/assertion-error/assertion-error.d.ts b/samples/react-multipage/typings/assertion-error/assertion-error.d.ts new file mode 100644 index 000000000..08217c9e5 --- /dev/null +++ b/samples/react-multipage/typings/assertion-error/assertion-error.d.ts @@ -0,0 +1,15 @@ +// Type definitions for assertion-error 1.0.0 +// Project: https://github.com/chaijs/assertion-error +// Definitions by: Bart van der Schoor +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +declare module 'assertion-error' { + class AssertionError implements Error { + constructor(message: string, props?: any, ssf?: Function); + name: string; + message: string; + showDiff: boolean; + stack: string; + } + export = AssertionError; +} diff --git a/samples/react-multipage/typings/chai/chai.d.ts b/samples/react-multipage/typings/chai/chai.d.ts new file mode 100644 index 000000000..da4d718e1 --- /dev/null +++ b/samples/react-multipage/typings/chai/chai.d.ts @@ -0,0 +1,388 @@ +// Type definitions for chai 3.2.0 +// Project: http://chaijs.com/ +// Definitions by: Jed Mao , +// Bart van der Schoor , +// Andrew Brown , +// Olivier Chevet +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +// + +declare module Chai { + + interface ChaiStatic { + expect: ExpectStatic; + should(): Should; + /** + * Provides a way to extend the internals of Chai + */ + use(fn: (chai: any, utils: any) => void): any; + assert: AssertStatic; + config: Config; + AssertionError: AssertionError; + } + + export interface ExpectStatic extends AssertionStatic { + fail(actual?: any, expected?: any, message?: string, operator?: string): void; + } + + export interface AssertStatic extends Assert { + } + + export interface AssertionStatic { + (target: any, message?: string): Assertion; + } + + interface ShouldAssertion { + equal(value1: any, value2: any, message?: string): void; + Throw: ShouldThrow; + throw: ShouldThrow; + exist(value: any, message?: string): void; + } + + interface Should extends ShouldAssertion { + not: ShouldAssertion; + fail(actual: any, expected: any, message?: string, operator?: string): void; + } + + interface ShouldThrow { + (actual: Function): void; + (actual: Function, expected: string|RegExp, message?: string): void; + (actual: Function, constructor: Error|Function, expected?: string|RegExp, message?: string): void; + } + + interface Assertion extends LanguageChains, NumericComparison, TypeComparison { + not: Assertion; + deep: Deep; + any: KeyFilter; + all: KeyFilter; + a: TypeComparison; + an: TypeComparison; + include: Include; + includes: Include; + contain: Include; + contains: Include; + ok: Assertion; + true: Assertion; + false: Assertion; + null: Assertion; + undefined: Assertion; + NaN: Assertion; + exist: Assertion; + empty: Assertion; + arguments: Assertion; + Arguments: Assertion; + equal: Equal; + equals: Equal; + eq: Equal; + eql: Equal; + eqls: Equal; + property: Property; + ownProperty: OwnProperty; + haveOwnProperty: OwnProperty; + ownPropertyDescriptor: OwnPropertyDescriptor; + haveOwnPropertyDescriptor: OwnPropertyDescriptor; + length: Length; + lengthOf: Length; + match: Match; + matches: Match; + string(string: string, message?: string): Assertion; + keys: Keys; + key(string: string): Assertion; + throw: Throw; + throws: Throw; + Throw: Throw; + respondTo: RespondTo; + respondsTo: RespondTo; + itself: Assertion; + satisfy: Satisfy; + satisfies: Satisfy; + closeTo(expected: number, delta: number, message?: string): Assertion; + members: Members; + increase: PropertyChange; + increases: PropertyChange; + decrease: PropertyChange; + decreases: PropertyChange; + change: PropertyChange; + changes: PropertyChange; + extensible: Assertion; + sealed: Assertion; + frozen: Assertion; + + } + + interface LanguageChains { + to: Assertion; + be: Assertion; + been: Assertion; + is: Assertion; + that: Assertion; + which: Assertion; + and: Assertion; + has: Assertion; + have: Assertion; + with: Assertion; + at: Assertion; + of: Assertion; + same: Assertion; + } + + interface NumericComparison { + above: NumberComparer; + gt: NumberComparer; + greaterThan: NumberComparer; + least: NumberComparer; + gte: NumberComparer; + below: NumberComparer; + lt: NumberComparer; + lessThan: NumberComparer; + most: NumberComparer; + lte: NumberComparer; + within(start: number, finish: number, message?: string): Assertion; + } + + interface NumberComparer { + (value: number, message?: string): Assertion; + } + + interface TypeComparison { + (type: string, message?: string): Assertion; + instanceof: InstanceOf; + instanceOf: InstanceOf; + } + + interface InstanceOf { + (constructor: Object, message?: string): Assertion; + } + + interface Deep { + equal: Equal; + include: Include; + property: Property; + members: Members; + } + + interface KeyFilter { + keys: Keys; + } + + interface Equal { + (value: any, message?: string): Assertion; + } + + interface Property { + (name: string, value?: any, message?: string): Assertion; + } + + interface OwnProperty { + (name: string, message?: string): Assertion; + } + + interface OwnPropertyDescriptor { + (name: string, descriptor: PropertyDescriptor, message?: string): Assertion; + (name: string, message?: string): Assertion; + } + + interface Length extends LanguageChains, NumericComparison { + (length: number, message?: string): Assertion; + } + + interface Include { + (value: Object, message?: string): Assertion; + (value: string, message?: string): Assertion; + (value: number, message?: string): Assertion; + keys: Keys; + members: Members; + any: KeyFilter; + all: KeyFilter; + } + + interface Match { + (regexp: RegExp|string, message?: string): Assertion; + } + + interface Keys { + (...keys: string[]): Assertion; + (keys: any[]): Assertion; + (keys: Object): Assertion; + } + + interface Throw { + (): Assertion; + (expected: string, message?: string): Assertion; + (expected: RegExp, message?: string): Assertion; + (constructor: Error, expected?: string, message?: string): Assertion; + (constructor: Error, expected?: RegExp, message?: string): Assertion; + (constructor: Function, expected?: string, message?: string): Assertion; + (constructor: Function, expected?: RegExp, message?: string): Assertion; + } + + interface RespondTo { + (method: string, message?: string): Assertion; + } + + interface Satisfy { + (matcher: Function, message?: string): Assertion; + } + + interface Members { + (set: any[], message?: string): Assertion; + } + + interface PropertyChange { + (object: Object, prop: string, msg?: string): Assertion; + } + + export interface Assert { + /** + * @param expression Expression to test for truthiness. + * @param message Message to display on error. + */ + (expression: any, message?: string): void; + + fail(actual?: any, expected?: any, msg?: string, operator?: string): void; + + ok(val: any, msg?: string): void; + isOk(val: any, msg?: string): void; + notOk(val: any, msg?: string): void; + isNotOk(val: any, msg?: string): void; + + equal(act: any, exp: any, msg?: string): void; + notEqual(act: any, exp: any, msg?: string): void; + + strictEqual(act: any, exp: any, msg?: string): void; + notStrictEqual(act: any, exp: any, msg?: string): void; + + deepEqual(act: any, exp: any, msg?: string): void; + notDeepEqual(act: any, exp: any, msg?: string): void; + + isTrue(val: any, msg?: string): void; + isFalse(val: any, msg?: string): void; + + isNull(val: any, msg?: string): void; + isNotNull(val: any, msg?: string): void; + + isUndefined(val: any, msg?: string): void; + isDefined(val: any, msg?: string): void; + + isNaN(val: any, msg?: string): void; + isNotNaN(val: any, msg?: string): void; + + isAbove(val: number, abv: number, msg?: string): void; + isBelow(val: number, blw: number, msg?: string): void; + + isFunction(val: any, msg?: string): void; + isNotFunction(val: any, msg?: string): void; + + isObject(val: any, msg?: string): void; + isNotObject(val: any, msg?: string): void; + + isArray(val: any, msg?: string): void; + isNotArray(val: any, msg?: string): void; + + isString(val: any, msg?: string): void; + isNotString(val: any, msg?: string): void; + + isNumber(val: any, msg?: string): void; + isNotNumber(val: any, msg?: string): void; + + isBoolean(val: any, msg?: string): void; + isNotBoolean(val: any, msg?: string): void; + + typeOf(val: any, type: string, msg?: string): void; + notTypeOf(val: any, type: string, msg?: string): void; + + instanceOf(val: any, type: Function, msg?: string): void; + notInstanceOf(val: any, type: Function, msg?: string): void; + + include(exp: string, inc: any, msg?: string): void; + include(exp: any[], inc: any, msg?: string): void; + + notInclude(exp: string, inc: any, msg?: string): void; + notInclude(exp: any[], inc: any, msg?: string): void; + + match(exp: any, re: RegExp, msg?: string): void; + notMatch(exp: any, re: RegExp, msg?: string): void; + + property(obj: Object, prop: string, msg?: string): void; + notProperty(obj: Object, prop: string, msg?: string): void; + deepProperty(obj: Object, prop: string, msg?: string): void; + notDeepProperty(obj: Object, prop: string, msg?: string): void; + + propertyVal(obj: Object, prop: string, val: any, msg?: string): void; + propertyNotVal(obj: Object, prop: string, val: any, msg?: string): void; + + deepPropertyVal(obj: Object, prop: string, val: any, msg?: string): void; + deepPropertyNotVal(obj: Object, prop: string, val: any, msg?: string): void; + + lengthOf(exp: any, len: number, msg?: string): void; + //alias frenzy + throw(fn: Function, msg?: string): void; + throw(fn: Function, regExp: RegExp): void; + throw(fn: Function, errType: Function, msg?: string): void; + throw(fn: Function, errType: Function, regExp: RegExp): void; + + throws(fn: Function, msg?: string): void; + throws(fn: Function, regExp: RegExp): void; + throws(fn: Function, errType: Function, msg?: string): void; + throws(fn: Function, errType: Function, regExp: RegExp): void; + + Throw(fn: Function, msg?: string): void; + Throw(fn: Function, regExp: RegExp): void; + Throw(fn: Function, errType: Function, msg?: string): void; + Throw(fn: Function, errType: Function, regExp: RegExp): void; + + doesNotThrow(fn: Function, msg?: string): void; + doesNotThrow(fn: Function, regExp: RegExp): void; + doesNotThrow(fn: Function, errType: Function, msg?: string): void; + doesNotThrow(fn: Function, errType: Function, regExp: RegExp): void; + + operator(val: any, operator: string, val2: any, msg?: string): void; + closeTo(act: number, exp: number, delta: number, msg?: string): void; + + sameMembers(set1: any[], set2: any[], msg?: string): void; + sameDeepMembers(set1: any[], set2: any[], msg?: string): void; + includeMembers(superset: any[], subset: any[], msg?: string): void; + + ifError(val: any, msg?: string): void; + + isExtensible(obj: {}, msg?: string): void; + extensible(obj: {}, msg?: string): void; + isNotExtensible(obj: {}, msg?: string): void; + notExtensible(obj: {}, msg?: string): void; + + isSealed(obj: {}, msg?: string): void; + sealed(obj: {}, msg?: string): void; + isNotSealed(obj: {}, msg?: string): void; + notSealed(obj: {}, msg?: string): void; + + isFrozen(obj: Object, msg?: string): void; + frozen(obj: Object, msg?: string): void; + isNotFrozen(obj: Object, msg?: string): void; + notFrozen(obj: Object, msg?: string): void; + + + } + + export interface Config { + includeStack: boolean; + } + + export class AssertionError { + constructor(message: string, _props?: any, ssf?: Function); + name: string; + message: string; + showDiff: boolean; + stack: string; + } +} + +declare var chai: Chai.ChaiStatic; + +declare module "chai" { + export = chai; +} + +interface Object { + should: Chai.Assertion; +} diff --git a/samples/react-multipage/typings/combokeys/combokeys.d.ts b/samples/react-multipage/typings/combokeys/combokeys.d.ts new file mode 100644 index 000000000..f7e1e5b03 --- /dev/null +++ b/samples/react-multipage/typings/combokeys/combokeys.d.ts @@ -0,0 +1,107 @@ +// Type definitions for Combokeys v2.4.6 +// Project: https://github.com/PolicyStat/combokeys +// Definitions by: Ian Clanton-Thuon +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +declare namespace Combokeys { + interface CombokeysStatic { + new (element: Element): Combokeys; + + /** + * all instances of Combokeys + */ + instances: Combokeys[]; + + /** + * reset all instances + */ + reset(): void; + } + + interface Combokeys { + element: Element; + + /** + * binds an event to Combokeys + * + * can be a single key, a combination of keys separated with +, + * an array of keys, or a sequence of keys separated by spaces + * + * be sure to list the modifier keys first to make sure that the + * correct key ends up getting bound (the last key in the pattern) + * + * @param {keys} key combination or combinations + * @param {callback} callback function + * @param {handler} optional - one of "keypress", "keydown", or "keyup" + * @returns void + */ + bind(keys: string | string[], callback: () => void, action?: string): void; + + + /** + * binds multiple combinations to the same callback + * + * @param {keys} key combinations + * @param {callback} callback function + * @param {handler} optional - one of "keypress", "keydown", or "keyup" + * @returns void + */ + bindMultiple(keys: string[], callback: () => void, action?: string): void; + + /** + * unbinds an event to Combokeys + * + * the unbinding sets the callback function of the specified key combo + * to an empty function and deletes the corresponding key in the + * directMap dict. + * + * the keycombo+action has to be exactly the same as + * it was defined in the bind method + * + * @param {keys} key combination or combinations + * @param {action} optional - one of "keypress", "keydown", or "keyup" + * @returns void + */ + unbind(keys: string | string[], action?: string): void; + + /** + * triggers an event that has already been bound + * + * @param {keys} key combination + * @param {action} optional - one of "keypress", "keydown", or "keyup" + * @returns void + */ + trigger(keys: string, action?: string): void; + + /** + * resets the library back to its initial state. This is useful + * if you want to clear out the current keyboard shortcuts and bind + * new ones - for example if you switch to another page + * + * @returns void + */ + reset(): void; + + /** + * should we stop this event before firing off callbacks + * + * @param {e} event + * @param {element} bound element + * @return {boolean} + */ + stopCallback(e: Event, element: Element): boolean; + + /** + * detach all listners from the bound element + * + * @return {void} + */ + detach(): void; + } +} + +declare var combokeys: Combokeys.CombokeysStatic; + +declare module "combokeys" { + export = combokeys; +} diff --git a/samples/react-multipage/typings/es6-collections/es6-collections.d.ts b/samples/react-multipage/typings/es6-collections/es6-collections.d.ts new file mode 100644 index 000000000..bc39df295 --- /dev/null +++ b/samples/react-multipage/typings/es6-collections/es6-collections.d.ts @@ -0,0 +1,113 @@ +// Type definitions for es6-collections v0.5.1 +// Project: https://github.com/WebReflection/es6-collections/ +// Definitions by: Ron Buckton +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +/* ***************************************************************************** +Copyright (c) Microsoft Corporation. All rights reserved. +Licensed under the Apache License, Version 2.0 (the "License"); you may not use +this file except in compliance with the License. You may obtain a copy of the +License at http://www.apache.org/licenses/LICENSE-2.0 + +THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED +WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, +MERCHANTABLITY OR NON-INFRINGEMENT. + +See the Apache Version 2.0 License for specific language governing permissions +and limitations under the License. +***************************************************************************** */ + +interface IteratorResult { + done: boolean; + value?: T; +} + +interface Iterator { + next(value?: any): IteratorResult; + return?(value?: any): IteratorResult; + throw?(e?: any): IteratorResult; +} + +interface ForEachable { + forEach(callbackfn: (value: T) => void): void; +} + +interface Map { + clear(): void; + delete(key: K): boolean; + forEach(callbackfn: (value: V, index: K, map: Map) => void, thisArg?: any): void; + get(key: K): V; + has(key: K): boolean; + set(key: K, value?: V): Map; + entries(): Iterator<[K, V]>; + keys(): Iterator; + values(): Iterator; + size: number; +} + +interface MapConstructor { + new (): Map; + new (iterable: ForEachable<[K, V]>): Map; + prototype: Map; +} + +declare var Map: MapConstructor; + +interface Set { + add(value: T): Set; + clear(): void; + delete(value: T): boolean; + forEach(callbackfn: (value: T, index: T, set: Set) => void, thisArg?: any): void; + has(value: T): boolean; + entries(): Iterator<[T, T]>; + keys(): Iterator; + values(): Iterator; + size: number; +} + +interface SetConstructor { + new (): Set; + new (iterable: ForEachable): Set; + prototype: Set; +} + +declare var Set: SetConstructor; + +interface WeakMap { + delete(key: K): boolean; + clear(): void; + get(key: K): V; + has(key: K): boolean; + set(key: K, value?: V): WeakMap; +} + +interface WeakMapConstructor { + new (): WeakMap; + new (iterable: ForEachable<[K, V]>): WeakMap; + prototype: WeakMap; +} + +declare var WeakMap: WeakMapConstructor; + +interface WeakSet { + delete(value: T): boolean; + clear(): void; + add(value: T): WeakSet; + has(value: T): boolean; +} + +interface WeakSetConstructor { + new (): WeakSet; + new (iterable: ForEachable): WeakSet; + prototype: WeakSet; +} + +declare var WeakSet: WeakSetConstructor; + +declare module "es6-collections" { + var Map: MapConstructor; + var Set: SetConstructor; + var WeakMap: WeakMapConstructor; + var WeakSet: WeakSetConstructor; +} \ No newline at end of file diff --git a/samples/react-multipage/typings/es6-promise/es6-promise.d.ts b/samples/react-multipage/typings/es6-promise/es6-promise.d.ts new file mode 100644 index 000000000..a8f8d7845 --- /dev/null +++ b/samples/react-multipage/typings/es6-promise/es6-promise.d.ts @@ -0,0 +1,74 @@ +// Type definitions for es6-promise +// Project: https://github.com/jakearchibald/ES6-Promise +// Definitions by: François de Campredon , vvakame +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +interface Thenable { + then(onFulfilled?: (value: R) => U | Thenable, onRejected?: (error: any) => U | Thenable): Thenable; + then(onFulfilled?: (value: R) => U | Thenable, onRejected?: (error: any) => void): Thenable; + catch(onRejected?: (error: any) => U | Thenable): Thenable; +} + +declare class Promise implements Thenable { + /** + * If you call resolve in the body of the callback passed to the constructor, + * your promise is fulfilled with result object passed to resolve. + * If you call reject your promise is rejected with the object passed to reject. + * For consistency and debugging (eg stack traces), obj should be an instanceof Error. + * Any errors thrown in the constructor callback will be implicitly passed to reject(). + */ + constructor(callback: (resolve : (value?: R | Thenable) => void, reject: (error?: any) => void) => void); + + /** + * onFulfilled is called when/if "promise" resolves. onRejected is called when/if "promise" rejects. + * Both are optional, if either/both are omitted the next onFulfilled/onRejected in the chain is called. + * Both callbacks have a single parameter , the fulfillment value or rejection reason. + * "then" returns a new promise equivalent to the value you return from onFulfilled/onRejected after being passed through Promise.resolve. + * If an error is thrown in the callback, the returned promise rejects with that error. + * + * @param onFulfilled called when/if "promise" resolves + * @param onRejected called when/if "promise" rejects + */ + then(onFulfilled?: (value: R) => U | Thenable, onRejected?: (error: any) => U | Thenable): Promise; + then(onFulfilled?: (value: R) => U | Thenable, onRejected?: (error: any) => void): Promise; + + /** + * Sugar for promise.then(undefined, onRejected) + * + * @param onRejected called when/if "promise" rejects + */ + catch(onRejected?: (error: any) => U | Thenable): Promise; +} + +declare module Promise { + /** + * Make a new promise from the thenable. + * A thenable is promise-like in as far as it has a "then" method. + */ + function resolve(value?: R | Thenable): Promise; + + /** + * Make a promise that rejects to obj. For consistency and debugging (eg stack traces), obj should be an instanceof Error + */ + function reject(error: any): Promise; + + /** + * Make a promise that fulfills when every item in the array fulfills, and rejects if (and when) any item rejects. + * the array passed to all can be a mixture of promise-like objects and other objects. + * The fulfillment value is an array (in order) of fulfillment values. The rejection value is the first rejection value. + */ + function all(promises: (R | Thenable)[]): Promise; + + /** + * Make a Promise that fulfills when any item fulfills, and rejects if any item rejects. + */ + function race(promises: (R | Thenable)[]): Promise; +} + +declare module 'es6-promise' { + var foo: typeof Promise; // Temp variable to reference Promise in local context + module rsvp { + export var Promise: typeof foo; + } + export = rsvp; +} diff --git a/samples/react-multipage/typings/knockout/knockout.d.ts b/samples/react-multipage/typings/knockout/knockout.d.ts new file mode 100644 index 000000000..267f3174c --- /dev/null +++ b/samples/react-multipage/typings/knockout/knockout.d.ts @@ -0,0 +1,631 @@ +// Type definitions for Knockout v3.2.0 +// Project: http://knockoutjs.com +// Definitions by: Boris Yankov , Igor Oleinikov , Clément Bourgeois +// Definitions: https://github.com/borisyankov/DefinitelyTyped + + +interface KnockoutSubscribableFunctions { + [key: string]: KnockoutBindingHandler; + + notifySubscribers(valueToWrite?: T, event?: string): void; +} + +interface KnockoutComputedFunctions { + [key: string]: KnockoutBindingHandler; +} + +interface KnockoutObservableFunctions { + [key: string]: KnockoutBindingHandler; + + equalityComparer(a: any, b: any): boolean; +} + +interface KnockoutObservableArrayFunctions { + // General Array functions + indexOf(searchElement: T, fromIndex?: number): number; + slice(start: number, end?: number): T[]; + splice(start: number): T[]; + splice(start: number, deleteCount: number, ...items: T[]): T[]; + pop(): T; + push(...items: T[]): void; + shift(): T; + unshift(...items: T[]): number; + reverse(): KnockoutObservableArray; + sort(): KnockoutObservableArray; + sort(compareFunction: (left: T, right: T) => number): KnockoutObservableArray; + + // Ko specific + [key: string]: KnockoutBindingHandler; + + replace(oldItem: T, newItem: T): void; + + remove(item: T): T[]; + remove(removeFunction: (item: T) => boolean): T[]; + removeAll(items: T[]): T[]; + removeAll(): T[]; + + destroy(item: T): void; + destroy(destroyFunction: (item: T) => boolean): void; + destroyAll(items: T[]): void; + destroyAll(): void; +} + +interface KnockoutSubscribableStatic { + fn: KnockoutSubscribableFunctions; + + new (): KnockoutSubscribable; +} + +interface KnockoutSubscription { + dispose(): void; +} + +interface KnockoutSubscribable extends KnockoutSubscribableFunctions { + subscribe(callback: (newValue: T) => void, target?: any, event?: string): KnockoutSubscription; + subscribe(callback: (newValue: TEvent) => void, target: any, event: string): KnockoutSubscription; + extend(requestedExtenders: { [key: string]: any; }): KnockoutSubscribable; + getSubscriptionsCount(): number; +} + +interface KnockoutComputedStatic { + fn: KnockoutComputedFunctions; + + (): KnockoutComputed; + (func: () => T, context?: any, options?: any): KnockoutComputed; + (def: KnockoutComputedDefine, context?: any): KnockoutComputed; +} + +interface KnockoutComputed extends KnockoutObservable, KnockoutComputedFunctions { + fn: KnockoutComputedFunctions; + + dispose(): void; + isActive(): boolean; + getDependenciesCount(): number; + extend(requestedExtenders: { [key: string]: any; }): KnockoutComputed; +} + +interface KnockoutObservableArrayStatic { + fn: KnockoutObservableArrayFunctions; + + (value?: T[]): KnockoutObservableArray; +} + +interface KnockoutObservableArray extends KnockoutObservable, KnockoutObservableArrayFunctions { + extend(requestedExtenders: { [key: string]: any; }): KnockoutObservableArray; +} + +interface KnockoutObservableStatic { + fn: KnockoutObservableFunctions; + + (value?: T): KnockoutObservable; +} + +interface KnockoutObservable extends KnockoutSubscribable, KnockoutObservableFunctions { + (): T; + (value: T): void; + + peek(): T; + valueHasMutated?:{(): void;}; + valueWillMutate?:{(): void;}; + extend(requestedExtenders: { [key: string]: any; }): KnockoutObservable; +} + +interface KnockoutComputedDefine { + read(): T; + write? (value: T): void; + disposeWhenNodeIsRemoved?: Node; + disposeWhen? (): boolean; + owner?: any; + deferEvaluation?: boolean; + pure?: boolean; +} + +interface KnockoutBindingContext { + $parent: any; + $parents: any[]; + $root: any; + $data: any; + $rawData: any | KnockoutObservable; + $index?: KnockoutObservable; + $parentContext?: KnockoutBindingContext; + $component: any; + $componentTemplateNodes: Node[]; + + extend(properties: any): any; + createChildContext(dataItemOrAccessor: any, dataItemAlias?: any, extendCallback?: Function): any; +} + +interface KnockoutAllBindingsAccessor { + (): any; + get(name: string): any; + has(name: string): boolean; +} + +interface KnockoutBindingHandler { + after?: Array; + init?: (element: any, valueAccessor: () => any, allBindingsAccessor?: KnockoutAllBindingsAccessor, viewModel?: any, bindingContext?: KnockoutBindingContext) => void | { controlsDescendantBindings: boolean; }; + update?: (element: any, valueAccessor: () => any, allBindingsAccessor?: KnockoutAllBindingsAccessor, viewModel?: any, bindingContext?: KnockoutBindingContext) => void; + options?: any; + preprocess?: (value: string, name: string, addBindingCallback?: (name: string, value: string) => void) => string; +} + +interface KnockoutBindingHandlers { + [bindingHandler: string]: KnockoutBindingHandler; + + // Controlling text and appearance + visible: KnockoutBindingHandler; + text: KnockoutBindingHandler; + html: KnockoutBindingHandler; + css: KnockoutBindingHandler; + style: KnockoutBindingHandler; + attr: KnockoutBindingHandler; + + // Control Flow + foreach: KnockoutBindingHandler; + if: KnockoutBindingHandler; + ifnot: KnockoutBindingHandler; + with: KnockoutBindingHandler; + + // Working with form fields + click: KnockoutBindingHandler; + event: KnockoutBindingHandler; + submit: KnockoutBindingHandler; + enable: KnockoutBindingHandler; + disable: KnockoutBindingHandler; + value: KnockoutBindingHandler; + textInput: KnockoutBindingHandler; + hasfocus: KnockoutBindingHandler; + checked: KnockoutBindingHandler; + options: KnockoutBindingHandler; + selectedOptions: KnockoutBindingHandler; + uniqueName: KnockoutBindingHandler; + + // Rendering templates + template: KnockoutBindingHandler; + + // Components (new for v3.2) + component: KnockoutBindingHandler; +} + +interface KnockoutMemoization { + memoize(callback: () => string): string; + unmemoize(memoId: string, callbackParams: any[]): boolean; + unmemoizeDomNodeAndDescendants(domNode: any, extraCallbackParamsArray: any[]): boolean; + parseMemoText(memoText: string): string; +} + +interface KnockoutVirtualElement {} + +interface KnockoutVirtualElements { + allowedBindings: { [bindingName: string]: boolean; }; + emptyNode(node: KnockoutVirtualElement ): void; + firstChild(node: KnockoutVirtualElement ): KnockoutVirtualElement; + insertAfter( container: KnockoutVirtualElement, nodeToInsert: Node, insertAfter: Node ): void; + nextSibling(node: KnockoutVirtualElement): Node; + prepend(node: KnockoutVirtualElement, toInsert: Node ): void; + setDomNodeChildren(node: KnockoutVirtualElement, newChildren: { length: number;[index: number]: Node; } ): void; + childNodes(node: KnockoutVirtualElement ): Node[]; +} + +interface KnockoutExtenders { + throttle(target: any, timeout: number): KnockoutComputed; + notify(target: any, notifyWhen: string): any; + + rateLimit(target: any, timeout: number): any; + rateLimit(target: any, options: { timeout: number; method?: string; }): any; + + trackArrayChanges(target: any): any; +} + +// +// NOTE TO MAINTAINERS AND CONTRIBUTORS : pay attention to only include symbols that are +// publicly exported in the minified version of ko, without that you can give the false +// impression that some functions will be available in production builds. +// +interface KnockoutUtils { + ////////////////////////////////// + // utils.domData.js + ////////////////////////////////// + + domData: { + get (node: Element, key: string): any; + + set (node: Element, key: string, value: any): void; + + getAll(node: Element, createIfNotFound: boolean): any; + + clear(node: Element): boolean; + }; + + ////////////////////////////////// + // utils.domNodeDisposal.js + ////////////////////////////////// + + domNodeDisposal: { + addDisposeCallback(node: Element, callback: Function): void; + + removeDisposeCallback(node: Element, callback: Function): void; + + cleanNode(node: Node): Element; + + removeNode(node: Node): void; + }; + + addOrRemoveItem(array: T[] | KnockoutObservable, value: T, included: T): void; + + arrayFilter(array: T[], predicate: (item: T) => boolean): T[]; + + arrayFirst(array: T[], predicate: (item: T) => boolean, predicateOwner?: any): T; + + arrayForEach(array: T[], action: (item: T, index: number) => void): void; + + arrayGetDistinctValues(array: T[]): T[]; + + arrayIndexOf(array: T[], item: T): number; + + arrayMap(array: T[], mapping: (item: T) => U): U[]; + + arrayPushAll(array: T[] | KnockoutObservableArray, valuesToPush: T[]): T[]; + + arrayRemoveItem(array: any[], itemToRemove: any): void; + + compareArrays(a: T[], b: T[]): Array>; + + extend(target: Object, source: Object): Object; + + fieldsIncludedWithJsonPost: any[]; + + getFormFields(form: any, fieldName: string): any[]; + + objectForEach(obj: any, action: (key: any, value: any) => void): void; + + parseHtmlFragment(html: string): any[]; + + parseJson(jsonString: string): any; + + postJson(urlOrForm: any, data: any, options: any): void; + + peekObservable(value: KnockoutObservable): T; + + range(min: any, max: any): any; + + registerEventHandler(element: any, eventType: any, handler: Function): void; + + setHtml(node: Element, html: () => string): void; + + setHtml(node: Element, html: string): void; + + setTextContent(element: any, textContent: string | KnockoutObservable): void; + + stringifyJson(data: any, replacer?: Function, space?: string): string; + + toggleDomNodeCssClass(node: any, className: string, shouldHaveClass: boolean): void; + + triggerEvent(element: any, eventType: any): void; + + unwrapObservable(value: KnockoutObservable | T): T; + + // NOT PART OF THE MINIFIED API SURFACE (ONLY IN knockout-{version}.debug.js) https://github.com/SteveSanderson/knockout/issues/670 + // forceRefresh(node: any): void; + // ieVersion: number; + // isIe6: boolean; + // isIe7: boolean; + // jQueryHtmlParse(html: string): any[]; + // makeArray(arrayLikeObject: any): any[]; + // moveCleanedNodesToContainerElement(nodes: any[]): HTMLElement; + // replaceDomNodes(nodeToReplaceOrNodeArray: any, newNodesArray: any[]): void; + // setDomNodeChildren(domNode: any, childNodes: any[]): void; + // setElementName(element: any, name: string): void; + // setOptionNodeSelectionState(optionNode: any, isSelected: boolean): void; + // simpleHtmlParse(html: string): any[]; + // stringStartsWith(str: string, startsWith: string): boolean; + // stringTokenize(str: string, delimiter: string): string[]; + // stringTrim(str: string): string; + // tagNameLower(element: any): string; +} + +interface KnockoutArrayChange { + status: string; + value: T; + index: number; + moved?: number; +} + +////////////////////////////////// +// templateSources.js +////////////////////////////////// + +interface KnockoutTemplateSourcesDomElement { + text(): any; + text(value: any): void; + + data(key: string): any; + data(key: string, value: any): any; +} + +interface KnockoutTemplateAnonymous extends KnockoutTemplateSourcesDomElement { + nodes(): any; + nodes(value: any): void; +} + +interface KnockoutTemplateSources { + + domElement: { + prototype: KnockoutTemplateSourcesDomElement + new (element: Element): KnockoutTemplateSourcesDomElement + }; + + anonymousTemplate: { + prototype: KnockoutTemplateAnonymous; + new (element: Element): KnockoutTemplateAnonymous; + }; +} + +////////////////////////////////// +// nativeTemplateEngine.js +////////////////////////////////// + +interface KnockoutNativeTemplateEngine { + + renderTemplateSource(templateSource: Object, bindingContext?: KnockoutBindingContext, options?: Object): any[]; +} + +////////////////////////////////// +// templateEngine.js +////////////////////////////////// + +interface KnockoutTemplateEngine extends KnockoutNativeTemplateEngine { + + createJavaScriptEvaluatorBlock(script: string): string; + + makeTemplateSource(template: any, templateDocument?: Document): any; + + renderTemplate(template: any, bindingContext: KnockoutBindingContext, options: Object, templateDocument: Document): any; + + isTemplateRewritten(template: any, templateDocument: Document): boolean; + + rewriteTemplate(template: any, rewriterCallback: Function, templateDocument: Document): void; +} + +///////////////////////////////// + +interface KnockoutStatic { + utils: KnockoutUtils; + memoization: KnockoutMemoization; + + bindingHandlers: KnockoutBindingHandlers; + getBindingHandler(handler: string): KnockoutBindingHandler; + + virtualElements: KnockoutVirtualElements; + extenders: KnockoutExtenders; + + applyBindings(viewModelOrBindingContext?: any, rootNode?: any): void; + applyBindingsToDescendants(viewModelOrBindingContext: any, rootNode: any): void; + applyBindingAccessorsToNode(node: Node, bindings: (bindingContext: KnockoutBindingContext, node: Node) => {}, bindingContext: KnockoutBindingContext): void; + applyBindingAccessorsToNode(node: Node, bindings: {}, bindingContext: KnockoutBindingContext): void; + applyBindingAccessorsToNode(node: Node, bindings: (bindingContext: KnockoutBindingContext, node: Node) => {}, viewModel: any): void; + applyBindingAccessorsToNode(node: Node, bindings: {}, viewModel: any): void; + applyBindingsToNode(node: Node, bindings: any, viewModelOrBindingContext?: any): any; + + subscribable: KnockoutSubscribableStatic; + observable: KnockoutObservableStatic; + + computed: KnockoutComputedStatic; + pureComputed(evaluatorFunction: () => T, context?: any): KnockoutComputed; + pureComputed(options: KnockoutComputedDefine, context?: any): KnockoutComputed; + + observableArray: KnockoutObservableArrayStatic; + + contextFor(node: any): any; + isSubscribable(instance: any): boolean; + toJSON(viewModel: any, replacer?: Function, space?: any): string; + toJS(viewModel: any): any; + isObservable(instance: any): boolean; + isWriteableObservable(instance: any): boolean; + isComputed(instance: any): boolean; + dataFor(node: any): any; + removeNode(node: Element): void; + cleanNode(node: Element): Element; + renderTemplate(template: Function, viewModel: any, options?: any, target?: any, renderMode?: any): any; + renderTemplate(template: string, viewModel: any, options?: any, target?: any, renderMode?: any): any; + unwrap(value: KnockoutObservable | T): T; + + computedContext: KnockoutComputedContext; + + ////////////////////////////////// + // templateSources.js + ////////////////////////////////// + + templateSources: KnockoutTemplateSources; + + ////////////////////////////////// + // templateEngine.js + ////////////////////////////////// + + templateEngine: { + + prototype: KnockoutTemplateEngine; + + new (): KnockoutTemplateEngine; + }; + + ////////////////////////////////// + // templateRewriting.js + ////////////////////////////////// + + templateRewriting: { + + ensureTemplateIsRewritten(template: Node, templateEngine: KnockoutTemplateEngine, templateDocument: Document): any; + ensureTemplateIsRewritten(template: string, templateEngine: KnockoutTemplateEngine, templateDocument: Document): any; + + memoizeBindingAttributeSyntax(htmlString: string, templateEngine: KnockoutTemplateEngine): any; + + applyMemoizedBindingsToNextSibling(bindings: any, nodeName: string): string; + }; + + ////////////////////////////////// + // nativeTemplateEngine.js + ////////////////////////////////// + + nativeTemplateEngine: { + + prototype: KnockoutNativeTemplateEngine; + + new (): KnockoutNativeTemplateEngine; + + instance: KnockoutNativeTemplateEngine; + }; + + ////////////////////////////////// + // jqueryTmplTemplateEngine.js + ////////////////////////////////// + + jqueryTmplTemplateEngine: { + + prototype: KnockoutTemplateEngine; + + renderTemplateSource(templateSource: Object, bindingContext: KnockoutBindingContext, options: Object): Node[]; + + createJavaScriptEvaluatorBlock(script: string): string; + + addTemplate(templateName: string, templateMarkup: string): void; + }; + + ////////////////////////////////// + // templating.js + ////////////////////////////////// + + setTemplateEngine(templateEngine: KnockoutNativeTemplateEngine): void; + + renderTemplate(template: Function, dataOrBindingContext: KnockoutBindingContext, options: Object, targetNodeOrNodeArray: Node, renderMode: string): any; + renderTemplate(template: any, dataOrBindingContext: KnockoutBindingContext, options: Object, targetNodeOrNodeArray: Node, renderMode: string): any; + renderTemplate(template: Function, dataOrBindingContext: any, options: Object, targetNodeOrNodeArray: Node, renderMode: string): any; + renderTemplate(template: any, dataOrBindingContext: any, options: Object, targetNodeOrNodeArray: Node, renderMode: string): any; + renderTemplate(template: Function, dataOrBindingContext: KnockoutBindingContext, options: Object, targetNodeOrNodeArray: Node[], renderMode: string): any; + renderTemplate(template: any, dataOrBindingContext: KnockoutBindingContext, options: Object, targetNodeOrNodeArray: Node[], renderMode: string): any; + renderTemplate(template: Function, dataOrBindingContext: any, options: Object, targetNodeOrNodeArray: Node[], renderMode: string): any; + renderTemplate(template: any, dataOrBindingContext: any, options: Object, targetNodeOrNodeArray: Node[], renderMode: string): any; + + renderTemplateForEach(template: Function, arrayOrObservableArray: any[], options: Object, targetNode: Node, parentBindingContext: KnockoutBindingContext): any; + renderTemplateForEach(template: any, arrayOrObservableArray: any[], options: Object, targetNode: Node, parentBindingContext: KnockoutBindingContext): any; + renderTemplateForEach(template: Function, arrayOrObservableArray: KnockoutObservable, options: Object, targetNode: Node, parentBindingContext: KnockoutBindingContext): any; + renderTemplateForEach(template: any, arrayOrObservableArray: KnockoutObservable, options: Object, targetNode: Node, parentBindingContext: KnockoutBindingContext): any; + + expressionRewriting: { + bindingRewriteValidators: any; + parseObjectLiteral: { (objectLiteralString: string): any[] } + }; + + ///////////////////////////////// + + bindingProvider: { + instance: KnockoutBindingProvider; + new (): KnockoutBindingProvider; + } + + ///////////////////////////////// + // selectExtensions.js + ///////////////////////////////// + + selectExtensions: { + + readValue(element: HTMLElement): any; + + writeValue(element: HTMLElement, value: any): void; + }; + + components: KnockoutComponents; +} + +interface KnockoutBindingProvider { + nodeHasBindings(node: Node): boolean; + getBindings(node: Node, bindingContext: KnockoutBindingContext): {}; + getBindingAccessors?(node: Node, bindingContext: KnockoutBindingContext): { [key: string]: string; }; +} + +interface KnockoutComputedContext { + getDependenciesCount(): number; + isInitial: () => boolean; + isSleeping: boolean; +} + +// +// refactored types into a namespace to reduce global pollution +// and used Union Types to simplify overloads (requires TypeScript 1.4) +// +declare module KnockoutComponentTypes { + + interface Config { + viewModel?: ViewModelFunction | ViewModelSharedInstance | ViewModelFactoryFunction | AMDModule; + template: string | Node[]| DocumentFragment | TemplateElement | AMDModule; + synchronous?: boolean; + } + + interface ComponentConfig { + viewModel?: ViewModelFunction | ViewModelSharedInstance | ViewModelFactoryFunction | AMDModule; + template: any; + createViewModel?: any; + } + + interface EmptyConfig { + } + + // common AMD type + interface AMDModule { + require: string; + } + + // viewmodel types + interface ViewModelFunction { + (params?: any): any; + } + + interface ViewModelSharedInstance { + instance: any; + } + + interface ViewModelFactoryFunction { + createViewModel: (params?: any, componentInfo?: ComponentInfo) => any; + } + + interface ComponentInfo { + element: Node; + templateNodes: Node[]; + } + + interface TemplateElement { + element: string | Node; + } + + interface Loader { + getConfig? (componentName: string, callback: (result: ComponentConfig) => void): void; + loadComponent? (componentName: string, config: ComponentConfig, callback: (result: Definition) => void): void; + loadTemplate? (componentName: string, templateConfig: any, callback: (result: Node[]) => void): void; + loadViewModel? (componentName: string, viewModelConfig: any, callback: (result: any) => void): void; + suppressLoaderExceptions?: boolean; + } + + interface Definition { + template: Node[]; + createViewModel? (params: any, options: { element: Node; }): any; + } +} + +interface KnockoutComponents { + // overloads for register method: + register(componentName: string, config: KnockoutComponentTypes.Config | KnockoutComponentTypes.EmptyConfig): void; + + isRegistered(componentName: string): boolean; + unregister(componentName: string): void; + get(componentName: string, callback: (definition: KnockoutComponentTypes.Definition) => void): void; + clearCachedDefinition(componentName: string): void + defaultLoader: KnockoutComponentTypes.Loader; + loaders: KnockoutComponentTypes.Loader[]; + getComponentNameForNode(node: Node): string; +} + +declare var ko: KnockoutStatic; + +declare module "knockout" { + export = ko; +} diff --git a/samples/react-multipage/typings/lodash/lodash.d.ts b/samples/react-multipage/typings/lodash/lodash.d.ts new file mode 100644 index 000000000..1e39d223f --- /dev/null +++ b/samples/react-multipage/typings/lodash/lodash.d.ts @@ -0,0 +1,20808 @@ +// Type definitions for Lo-Dash +// Project: http://lodash.com/ +// Definitions by: Brian Zengel , Ilya Mochalov , Stepan Mikhaylyuk +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + + +/** +### 4.0.0 Changelog (https://github.com/lodash/lodash/wiki/Changelog) + +#### TODO: +removed: +- [x] Removed _.support +- [x] Removed _.findWhere in favor of _.find with iteratee shorthand +- [x] Removed _.where in favor of _.filter with iteratee shorthand +- [x] Removed _.pluck in favor of _.map with iteratee shorthand + +renamed: +- [x] Renamed _.first to _.head +- [x] Renamed _.indexBy to _.keyBy +- [x] Renamed _.invoke to _.invokeMap +- [x] Renamed _.overArgs to _.overArgs +- [x] Renamed _.padLeft & _.padRight to _.padStart & _.padEnd +- [x] Renamed _.pairs to _.toPairs +- [x] Renamed _.rest to _.tail +- [x] Renamed _.restParam to _.rest +- [x] Renamed _.sortByOrder to _.orderBy +- [x] Renamed _.trimLeft & _.trimRight to _.trimStart & _.trimEnd +- [x] Renamed _.trunc to _.truncate + +split: +- [x] Split _.indexOf & _.lastIndexOf into _.sortedIndexOf & _.sortedLastIndexOf +- [x] Split _.max & _.min into _.maxBy & _.minBy +- [x] Split _.omit & _.pick into _.omitBy & _.pickBy +- [x] Split _.sample into _.sampleSize +- [x] Split _.sortedIndex into _.sortedIndexBy +- [x] Split _.sortedLastIndex into _.sortedLastIndexBy +- [x] Split _.uniq into _.sortedUniq, _.sortedUniqBy, & _.uniqBy + +changes: +- [x] Absorbed _.sortByAll into _.sortBy +- [x] Changed the category of _.at to “Object” +- [x] Changed the category of _.bindAll to “Utility” +- [x] Made _.capitalize uppercase the first character & lowercase the rest +- [x] Made _.functions return only own method names + + +added 23 array methods: +- [x] _.concat +- [x] _.differenceBy +- [x] _.differenceWith +- [x] _.flatMap +- [x] _.fromPairs +- [x] _.intersectionBy +- [x] _.intersectionWith +- [x] _.join +- [x] _.pullAll +- [x] _.pullAllBy +- [x] _.reverse +- [x] _.sortedIndexBy +- [x] _.sortedIndexOf +- [x] _.sortedLastIndexBy +- [x] _.sortedLastIndexOf +- [x] _.sortedUniq +- [x] _.sortedUniqBy +- [x] _.unionBy +- [x] _.unionWith +- [x] _.uniqBy +- [x] _.uniqWith +- [x] _.xorBy +- [x] _.xorWith + +added 18 lang methods: +- [x] _.cloneDeepWith +- [x] _.cloneWith +- [x] _.eq +- [x] _.isArrayLike +- [x] _.isArrayLikeObject +- [x] _.isEqualWith +- [x] _.isInteger +- [x] _.isLength +- [x] _.isMatchWith +- [x] _.isNil +- [x] _.isObjectLike +- [x] _.isSafeInteger +- [x] _.isSymbol +- [x] _.toInteger +- [x] _.toLength +- [x] _.toNumber +- [x] _.toSafeInteger +- [x] _.toString + +added 13 object methods: +- [x] _.assignIn +- [x] _.assignInWith +- [x] _.assignWith +- [x] _.functionsIn +- [x] _.hasIn +- [x] _.mergeWith +- [x] _.omitBy +- [x] _.pickBy + + +added 8 string methods: +- [x] _.lowerCase +- [x] _.lowerFirst +- [x] _.upperCase +- [x] _.upperFirst +- [x] _.toLower +- [x] _.toUpper + +added 8 utility methods: +- [x] _.toPath + +added 4 math methods: +- [x] _.maxBy +- [x] _.mean +- [x] _.minBy +- [x] _.sumBy + +added 2 function methods: +- [x] _.flip +- [x] _.unary + +added 2 number methods: +- [x] _.clamp +- [x] _.subtract + +added collection method: +- [x] _.sampleSize + +Added 3 aliases + +- [x] _.first as an alias of _.head + +Removed 17 aliases +- [x] Removed aliase _.all +- [x] Removed aliase _.any +- [x] Removed aliase _.backflow +- [x] Removed aliase _.callback +- [x] Removed aliase _.collect +- [x] Removed aliase _.compose +- [x] Removed aliase _.contains +- [x] Removed aliase _.detect +- [x] Removed aliase _.foldl +- [x] Removed aliase _.foldr +- [x] Removed aliase _.include +- [x] Removed aliase _.inject +- [x] Removed aliase _.methods +- [x] Removed aliase _.object +- [x] Removed aliase _.run +- [x] Removed aliase _.select +- [x] Removed aliase _.unique + +Other changes +- [x] Added support for array buffers to _.isEqual +- [x] Added support for converting iterators to _.toArray +- [x] Added support for deep paths to _.zipObject +- [x] Changed UMD to export to window or self when available regardless of other exports +- [x] Ensured debounce cancel clears args & thisArg references +- [x] Ensured _.add, _.subtract, & _.sum don’t skip NaN values +- [x] Ensured _.clone treats generators like functions +- [x] Ensured _.clone produces clones with the source’s [[Prototype]] +- [x] Ensured _.defaults assigns properties that shadow Object.prototype +- [x] Ensured _.defaultsDeep doesn’t merge a string into an array +- [x] Ensured _.defaultsDeep & _.merge don’t modify sources +- [x] Ensured _.defaultsDeep works with circular references +- [x] Ensured _.keys skips “length” on strict mode arguments objects in Safari 9 +- [x] Ensured _.merge doesn’t convert strings to arrays +- [x] Ensured _.merge merges plain-objects onto non plain-objects +- [x] Ensured _#plant resets iterator data of cloned sequences +- [x] Ensured _.random swaps min & max if min is greater than max +- [x] Ensured _.range preserves the sign of start of -0 +- [x] Ensured _.reduce & _.reduceRight use getIteratee in their array branch +- [x] Fixed rounding issue with the precision param of _.floor + +** LATER ** +Misc: +- [ ] Made _.forEach, _.forIn, _.forOwn, & _.times implicitly end a chain sequence +- [ ] Removed thisArg params from most methods +- [ ] Made “By” methods provide a single param to iteratees +- [ ] Made _.words chainable by default +- [ ] Removed isDeep params from _.clone & _.flatten +- [ ] Removed _.bindAll support for binding all methods when no names are provided +- [ ] Removed func-first param signature from _.before & _.after +- [ ] _.extend as an alias of _.assignIn +- [ ] _.extendWith as an alias of _.assignInWith +- [ ] Added clear method to _.memoize.Cache +- [ ] Added flush method to debounced & throttled functions +- [ ] Added support for ES6 maps, sets, & symbols to _.clone, _.isEqual, & _.toArray +- [ ] Enabled _.flow & _.flowRight to accept an array of functions +- [ ] Ensured “Collection” methods treat functions as objects +- [ ] Ensured _.assign, _.defaults, & _.merge coerce object values to objects +- [ ] Ensured _.bindKey bound functions call object[key] when called with the new operator +- [ ] Ensured _.isFunction returns true for generator functions +- [ ] Ensured _.merge assigns typed arrays directly +- [ ] Made _(...) an iterator & iterable +- [ ] Made _.drop, _.take, & right forms coerce n of undefined to 0 + +Methods: +- [ ] _.concat +- [ ] _.differenceBy +- [ ] _.differenceWith +- [ ] _.flatMap +- [ ] _.fromPairs +- [ ] _.intersectionBy +- [ ] _.intersectionWith +- [ ] _.join +- [ ] _.pullAll +- [ ] _.pullAllBy +- [ ] _.reverse +- [ ] _.sortedLastIndexOf +- [ ] _.unionBy +- [ ] _.unionWith +- [ ] _.uniqWith +- [ ] _.xorBy +- [ ] _.xorWith +- [ ] _.toString + +- [ ] _.invoke +- [ ] _.setWith +- [ ] _.toPairs +- [ ] _.toPairsIn +- [ ] _.unset + +- [ ] _.replace +- [ ] _.split + +- [ ] _.cond +- [ ] _.conforms +- [ ] _.nthArg +- [ ] _.over +- [ ] _.overEvery +- [ ] _.overSome +- [ ] _.rangeRight + +- [ ] _.next +*/ + +declare var _: _.LoDashStatic; + +declare module _ { + interface LoDashStatic { + /** + * Creates a lodash object which wraps the given value to enable intuitive method chaining. + * + * In addition to Lo-Dash methods, wrappers also have the following Array methods: + * concat, join, pop, push, reverse, shift, slice, sort, splice, and unshift + * + * Chaining is supported in custom builds as long as the value method is implicitly or + * explicitly included in the build. + * + * The chainable wrapper functions are: + * after, assign, bind, bindAll, bindKey, chain, chunk, compact, compose, concat, countBy, + * createCallback, curry, debounce, defaults, defer, delay, difference, filter, flatten, + * forEach, forEachRight, forIn, forInRight, forOwn, forOwnRight, functions, groupBy, + * keyBy, initial, intersection, invert, invoke, keys, map, max, memoize, merge, min, + * object, omit, once, pairs, partial, partialRight, pick, pluck, pull, push, range, reject, + * remove, rest, reverse, sample, shuffle, slice, sort, sortBy, splice, tap, throttle, times, + * toArray, transform, union, uniq, unset, unshift, unzip, values, where, without, wrap, and zip + * + * The non-chainable wrapper functions are: + * clone, cloneDeep, contains, escape, every, find, findIndex, findKey, findLast, + * findLastIndex, findLastKey, has, identity, indexOf, isArguments, isArray, isBoolean, + * isDate, isElement, isEmpty, isEqual, isFinite, isFunction, isNaN, isNull, isNumber, + * isObject, isPlainObject, isRegExp, isString, isUndefined, join, lastIndexOf, mixin, + * noConflict, parseInt, pop, random, reduce, reduceRight, result, shift, size, some, + * sortedIndex, runInContext, template, unescape, uniqueId, and value + * + * The wrapper functions first and last return wrapped values when n is provided, otherwise + * they return unwrapped values. + * + * Explicit chaining can be enabled by using the _.chain method. + **/ + (value: number): LoDashImplicitWrapper; + (value: string): LoDashImplicitStringWrapper; + (value: boolean): LoDashImplicitWrapper; + (value: Array): LoDashImplicitNumberArrayWrapper; + (value: Array): LoDashImplicitArrayWrapper; + (value: T): LoDashImplicitObjectWrapper; + (value: any): LoDashImplicitWrapper; + + /** + * The semantic version number. + **/ + VERSION: string; + + /** + * By default, the template delimiters used by Lo-Dash are similar to those in embedded Ruby + * (ERB). Change the following template settings to use alternative delimiters. + **/ + templateSettings: TemplateSettings; + } + + /** + * By default, the template delimiters used by Lo-Dash are similar to those in embedded Ruby + * (ERB). Change the following template settings to use alternative delimiters. + **/ + interface TemplateSettings { + /** + * The "escape" delimiter. + **/ + escape?: RegExp; + + /** + * The "evaluate" delimiter. + **/ + evaluate?: RegExp; + + /** + * An object to import into the template as local variables. + **/ + imports?: Dictionary; + + /** + * The "interpolate" delimiter. + **/ + interpolate?: RegExp; + + /** + * Used to reference the data object in the template text. + **/ + variable?: string; + } + + /** + * Creates a cache object to store key/value pairs. + */ + interface MapCache { + /** + * Removes `key` and its value from the cache. + * @param key The key of the value to remove. + * @return Returns `true` if the entry was removed successfully, else `false`. + */ + delete(key: string): boolean; + + /** + * Gets the cached value for `key`. + * @param key The key of the value to get. + * @return Returns the cached value. + */ + get(key: string): any; + + /** + * Checks if a cached value for `key` exists. + * @param key The key of the entry to check. + * @return Returns `true` if an entry for `key` exists, else `false`. + */ + has(key: string): boolean; + + /** + * Sets `value` to `key` of the cache. + * @param key The key of the value to cache. + * @param value The value to cache. + * @return Returns the cache object. + */ + set(key: string, value: any): _.Dictionary; + } + + interface LoDashWrapperBase { } + + interface LoDashImplicitWrapperBase extends LoDashWrapperBase { } + + interface LoDashExplicitWrapperBase extends LoDashWrapperBase { } + + interface LoDashImplicitWrapper extends LoDashImplicitWrapperBase> { } + + interface LoDashExplicitWrapper extends LoDashExplicitWrapperBase> { } + + interface LoDashImplicitStringWrapper extends LoDashImplicitWrapper { } + + interface LoDashExplicitStringWrapper extends LoDashExplicitWrapper { } + + interface LoDashImplicitObjectWrapper extends LoDashImplicitWrapperBase> { } + + interface LoDashExplicitObjectWrapper extends LoDashExplicitWrapperBase> { } + + interface LoDashImplicitArrayWrapper extends LoDashImplicitWrapperBase> { + pop(): T; + push(...items: T[]): LoDashImplicitArrayWrapper; + shift(): T; + sort(compareFn?: (a: T, b: T) => number): LoDashImplicitArrayWrapper; + splice(start: number): LoDashImplicitArrayWrapper; + splice(start: number, deleteCount: number, ...items: any[]): LoDashImplicitArrayWrapper; + unshift(...items: T[]): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper extends LoDashExplicitWrapperBase> { } + + interface LoDashImplicitNumberArrayWrapper extends LoDashImplicitArrayWrapper { } + + interface LoDashExplicitNumberArrayWrapper extends LoDashExplicitArrayWrapper { } + + /********* + * Array * + *********/ + + //_.chunk + interface LoDashStatic { + /** + * Creates an array of elements split into groups the length of size. If collection can’t be split evenly, the + * final chunk will be the remaining elements. + * + * @param array The array to process. + * @param size The length of each chunk. + * @return Returns the new array containing chunks. + */ + chunk( + array: List, + size?: number + ): T[][]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.chunk + */ + chunk(size?: number): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.chunk + */ + chunk(size?: number): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.chunk + */ + chunk(size?: number): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.chunk + */ + chunk(size?: number): LoDashExplicitArrayWrapper; + } + + //_.compact + interface LoDashStatic { + /** + * Creates an array with all falsey values removed. The values false, null, 0, "", undefined, and NaN are + * falsey. + * + * @param array The array to compact. + * @return (Array) Returns the new array of filtered values. + */ + compact(array?: List): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.compact + */ + compact(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.compact + */ + compact(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.compact + */ + compact(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.compact + */ + compact(): LoDashExplicitArrayWrapper; + } + + //_.concat DUMMY + interface LoDashStatic { + /** + * Creates a new array concatenating `array` with any additional arrays + * and/or values. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to concatenate. + * @param {...*} [values] The values to concatenate. + * @returns {Array} Returns the new concatenated array. + * @example + * + * var array = [1]; + * var other = _.concat(array, 2, [3], [[4]]); + * + * console.log(other); + * // => [1, 2, 3, [4]] + * + * console.log(array); + * // => [1] + */ + concat(...values: (T[]|List)[]) : T[]; + } + + //_.difference + interface LoDashStatic { + /** + * Creates an array of unique array values not included in the other provided arrays using SameValueZero for + * equality comparisons. + * + * @param array The array to inspect. + * @param values The arrays of values to exclude. + * @return Returns the new array of filtered values. + */ + difference( + array: T[]|List, + ...values: Array> + ): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.difference + */ + difference(...values: (T[]|List)[]): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.difference + */ + difference(...values: (TValue[]|List)[]): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.difference + */ + difference(...values: (T[]|List)[]): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.difference + */ + difference(...values: (TValue[]|List)[]): LoDashExplicitArrayWrapper; + } + + //_.differenceBy + interface LoDashStatic { + /** + * This method is like _.difference except that it accepts iteratee which is invoked for each element of array + * and values to generate the criterion by which uniqueness is computed. The iteratee is invoked with one + * argument: (value). + * + * @param array The array to inspect. + * @param values The values to exclude. + * @param iteratee The iteratee invoked per element. + * @returns Returns the new array of filtered values. + */ + differenceBy( + array: T[]|List, + values?: T[]|List, + iteratee?: ((value: T) => any)|string + ): T[]; + + /** + * @see _.differenceBy + */ + differenceBy( + array: T[]|List, + values?: T[]|List, + iteratee?: W + ): T[]; + + /** + * @see _.differenceBy + */ + differenceBy( + array: T[]|List, + values1?: T[]|List, + values2?: T[]|List, + iteratee?: ((value: T) => any)|string + ): T[]; + + /** + * @see _.differenceBy + */ + differenceBy( + array: T[]|List, + values1?: T[]|List, + values2?: T[]|List, + iteratee?: W + ): T[]; + + /** + * @see _.differenceBy + */ + differenceBy( + array: T[]|List, + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + iteratee?: ((value: T) => any)|string + ): T[]; + + /** + * @see _.differenceBy + */ + differenceBy( + array: T[]|List, + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + iteratee?: W + ): T[]; + + /** + * @see _.differenceBy + */ + differenceBy( + array: T[]|List, + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + iteratee?: W + ): T[]; + + /** + * @see _.differenceBy + */ + differenceBy( + array: T[]|List, + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + iteratee?: ((value: T) => any)|string + ): T[]; + + /** + * @see _.differenceBy + */ + differenceBy( + array: T[]|List, + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + values5?: T[]|List, + iteratee?: ((value: T) => any)|string + ): T[]; + + /** + * @see _.differenceBy + */ + differenceBy( + array: T[]|List, + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + values5?: T[]|List, + iteratee?: W + ): T[]; + + /** + * @see _.differenceBy + */ + differenceBy( + array: T[]|List, + ...values: any[] + ): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.differenceBy + */ + differenceBy( + values?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values?: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + values5?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + values5?: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + ...values: any[] + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.differenceBy + */ + differenceBy( + values?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values?: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + values5?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + values5?: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + ...values: any[] + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.differenceBy + */ + differenceBy( + values?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values?: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + values5?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + values5?: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + ...values: any[] + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.differenceBy + */ + differenceBy( + values?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values?: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + values5?: T[]|List, + iteratee?: ((value: T) => any)|string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + values1?: T[]|List, + values2?: T[]|List, + values3?: T[]|List, + values4?: T[]|List, + values5?: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.differenceBy + */ + differenceBy( + ...values: any[] + ): LoDashExplicitArrayWrapper; + } + + //_.differenceWith DUMMY + interface LoDashStatic { + /** + * Creates an array of unique `array` values not included in the other + * provided arrays using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to inspect. + * @param {...Array} [values] The values to exclude. + * @returns {Array} Returns the new array of filtered values. + * @example + * + * _.difference([3, 2, 1], [4, 2]); + * // => [3, 1] + */ + differenceWith( + array: any[]|List, + ...values: any[] + ): any[]; + } + + //_.drop + interface LoDashStatic { + /** + * Creates a slice of array with n elements dropped from the beginning. + * + * @param array The array to query. + * @param n The number of elements to drop. + * @return Returns the slice of array. + */ + drop(array: T[]|List, n?: number): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.drop + */ + drop(n?: number): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.drop + */ + drop(n?: number): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.drop + */ + drop(n?: number): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.drop + */ + drop(n?: number): LoDashExplicitArrayWrapper; + } + + //_.dropRight + interface LoDashStatic { + /** + * Creates a slice of array with n elements dropped from the end. + * + * @param array The array to query. + * @param n The number of elements to drop. + * @return Returns the slice of array. + */ + dropRight( + array: List, + n?: number + ): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.dropRight + */ + dropRight(n?: number): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.dropRight + */ + dropRight(n?: number): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.dropRight + */ + dropRight(n?: number): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.dropRight + */ + dropRight(n?: number): LoDashExplicitArrayWrapper; + } + + //_.dropRightWhile + interface LoDashStatic { + /** + * Creates a slice of array excluding elements dropped from the end. Elements are dropped until predicate + * returns falsey. The predicate is bound to thisArg and invoked with three arguments: (value, index, array). + * + * If a property name is provided for predicate the created _.property style callback returns the property + * value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for predicate the created _.matches style callback returns true for elements that + * match the properties of the given object, else false. + * + * @param array The array to query. + * @param predicate The function invoked per iteration. + * @param thisArg The this binding of predicate. + * @return Returns the slice of array. + */ + dropRightWhile( + array: List, + predicate?: ListIterator + ): TValue[]; + + /** + * @see _.dropRightWhile + */ + dropRightWhile( + array: List, + predicate?: string + ): TValue[]; + + /** + * @see _.dropRightWhile + */ + dropRightWhile( + array: List, + predicate?: TWhere + ): TValue[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.dropRightWhile + */ + dropRightWhile( + predicate?: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.dropRightWhile + */ + dropRightWhile( + predicate?: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.dropRightWhile + */ + dropRightWhile( + predicate?: TWhere + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.dropRightWhile + */ + dropRightWhile( + predicate?: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.dropRightWhile + */ + dropRightWhile( + predicate?: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.dropRightWhile + */ + dropRightWhile( + predicate?: TWhere + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.dropRightWhile + */ + dropRightWhile( + predicate?: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.dropRightWhile + */ + dropRightWhile( + predicate?: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.dropRightWhile + */ + dropRightWhile( + predicate?: TWhere + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.dropRightWhile + */ + dropRightWhile( + predicate?: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.dropRightWhile + */ + dropRightWhile( + predicate?: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.dropRightWhile + */ + dropRightWhile( + predicate?: TWhere + ): LoDashExplicitArrayWrapper; + } + + //_.dropWhile + interface LoDashStatic { + /** + * Creates a slice of array excluding elements dropped from the beginning. Elements are dropped until predicate + * returns falsey. The predicate is bound to thisArg and invoked with three arguments: (value, index, array). + * + * If a property name is provided for predicate the created _.property style callback returns the property + * value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for predicate the created _.matches style callback returns true for elements that + * have the properties of the given object, else false. + * + * @param array The array to query. + * @param predicate The function invoked per iteration. + * @param thisArg The this binding of predicate. + * @return Returns the slice of array. + */ + dropWhile( + array: List, + predicate?: ListIterator + ): TValue[]; + + /** + * @see _.dropWhile + */ + dropWhile( + array: List, + predicate?: string + ): TValue[]; + + /** + * @see _.dropWhile + */ + dropWhile( + array: List, + predicate?: TWhere + ): TValue[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.dropWhile + */ + dropWhile( + predicate?: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.dropWhile + */ + dropWhile( + predicate?: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.dropWhile + */ + dropWhile( + predicate?: TWhere + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.dropWhile + */ + dropWhile( + predicate?: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.dropWhile + */ + dropWhile( + predicate?: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.dropWhile + */ + dropWhile( + predicate?: TWhere + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.dropWhile + */ + dropWhile( + predicate?: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.dropWhile + */ + dropWhile( + predicate?: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.dropWhile + */ + dropWhile( + predicate?: TWhere + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.dropWhile + */ + dropWhile( + predicate?: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.dropWhile + */ + dropWhile( + predicate?: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.dropWhile + */ + dropWhile( + predicate?: TWhere + ): LoDashExplicitArrayWrapper; + } + + //_.fill + interface LoDashStatic { + /** + * Fills elements of array with value from start up to, but not including, end. + * + * Note: This method mutates array. + * + * @param array The array to fill. + * @param value The value to fill array with. + * @param start The start position. + * @param end The end position. + * @return Returns array. + */ + fill( + array: any[], + value: T, + start?: number, + end?: number + ): T[]; + + /** + * @see _.fill + */ + fill( + array: List, + value: T, + start?: number, + end?: number + ): List; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.fill + */ + fill( + value: T, + start?: number, + end?: number + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.fill + */ + fill( + value: T, + start?: number, + end?: number + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.fill + */ + fill( + value: T, + start?: number, + end?: number + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.fill + */ + fill( + value: T, + start?: number, + end?: number + ): LoDashExplicitObjectWrapper>; + } + + //_.findIndex + interface LoDashStatic { + /** + * This method is like _.find except that it returns the index of the first element predicate returns truthy + * for instead of the element itself. + * + * If a property name is provided for predicate the created _.property style callback returns the property + * value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for predicate the created _.matches style callback returns true for elements that + * have the properties of the given object, else false. + * + * @param array The array to search. + * @param predicate The function invoked per iteration. + * @param thisArg The this binding of predicate. + * @return Returns the index of the found element, else -1. + */ + findIndex( + array: List, + predicate?: ListIterator + ): number; + + /** + * @see _.findIndex + */ + findIndex( + array: List, + predicate?: string + ): number; + + /** + * @see _.findIndex + */ + findIndex( + array: List, + predicate?: W + ): number; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.findIndex + */ + findIndex( + predicate?: ListIterator + ): number; + + /** + * @see _.findIndex + */ + findIndex( + predicate?: string + ): number; + + /** + * @see _.findIndex + */ + findIndex( + predicate?: W + ): number; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.findIndex + */ + findIndex( + predicate?: ListIterator + ): number; + + /** + * @see _.findIndex + */ + findIndex( + predicate?: string + ): number; + + /** + * @see _.findIndex + */ + findIndex( + predicate?: W + ): number; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.findIndex + */ + findIndex( + predicate?: ListIterator + ): LoDashExplicitWrapper; + + /** + * @see _.findIndex + */ + findIndex( + predicate?: string + ): LoDashExplicitWrapper; + + /** + * @see _.findIndex + */ + findIndex( + predicate?: W + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.findIndex + */ + findIndex( + predicate?: ListIterator + ): LoDashExplicitWrapper; + + /** + * @see _.findIndex + */ + findIndex( + predicate?: string + ): LoDashExplicitWrapper; + + /** + * @see _.findIndex + */ + findIndex( + predicate?: W + ): LoDashExplicitWrapper; + } + + //_.findLastIndex + interface LoDashStatic { + /** + * This method is like _.findIndex except that it iterates over elements of collection from right to left. + * + * If a property name is provided for predicate the created _.property style callback returns the property + * value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for predicate the created _.matches style callback returns true for elements that + * have the properties of the given object, else false. + * + * @param array The array to search. + * @param predicate The function invoked per iteration. + * @param thisArg The function invoked per iteration. + * @return Returns the index of the found element, else -1. + */ + findLastIndex( + array: List, + predicate?: ListIterator + ): number; + + /** + * @see _.findLastIndex + */ + findLastIndex( + array: List, + predicate?: string + ): number; + + /** + * @see _.findLastIndex + */ + findLastIndex( + array: List, + predicate?: W + ): number; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.findLastIndex + */ + findLastIndex( + predicate?: ListIterator + ): number; + + /** + * @see _.findLastIndex + */ + findLastIndex( + predicate?: string + ): number; + + /** + * @see _.findLastIndex + */ + findLastIndex( + predicate?: W + ): number; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.findLastIndex + */ + findLastIndex( + predicate?: ListIterator + ): number; + + /** + * @see _.findLastIndex + */ + findLastIndex( + predicate?: string + ): number; + + /** + * @see _.findLastIndex + */ + findLastIndex( + predicate?: W + ): number; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.findLastIndex + */ + findLastIndex( + predicate?: ListIterator + ): LoDashExplicitWrapper; + + /** + * @see _.findLastIndex + */ + findLastIndex( + predicate?: string + ): LoDashExplicitWrapper; + + /** + * @see _.findLastIndex + */ + findLastIndex( + predicate?: W + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.findLastIndex + */ + findLastIndex( + predicate?: ListIterator + ): LoDashExplicitWrapper; + + /** + * @see _.findLastIndex + */ + findLastIndex( + predicate?: string + ): LoDashExplicitWrapper; + + /** + * @see _.findLastIndex + */ + findLastIndex( + predicate?: W + ): LoDashExplicitWrapper; + } + + //_.first + interface LoDashStatic { + /** + * @see _.head + */ + first(array: List): T; + } + + interface LoDashImplicitWrapper { + /** + * @see _.head + */ + first(): string; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.head + */ + first(): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.head + */ + first(): T; + } + + interface LoDashExplicitWrapper { + /** + * @see _.head + */ + first(): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.head + */ + first(): T; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.head + */ + first(): T; + } + + interface RecursiveArray extends Array> {} + interface ListOfRecursiveArraysOrValues extends List> {} + + //_.flatten + interface LoDashStatic { + /** + * Flattens a nested array. If isDeep is true the array is recursively flattened, otherwise it’s only + * flattened a single level. + * + * @param array The array to flatten. + * @param isDeep Specify a deep flatten. + * @return Returns the new flattened array. + */ + flatten(array: ListOfRecursiveArraysOrValues, isDeep: boolean): T[]; + + /** + * @see _.flatten + */ + flatten(array: List): T[]; + + /** + * @see _.flatten + */ + flatten(array: ListOfRecursiveArraysOrValues): RecursiveArray; + } + + interface LoDashImplicitWrapper { + /** + * @see _.flatten + */ + flatten(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.flatten + */ + flatten(isDeep?: boolean): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.flatten + */ + flatten(isDeep?: boolean): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.flatten + */ + flatten(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.flatten + */ + flatten(isDeep?: boolean): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.flatten + */ + flatten(isDeep?: boolean): LoDashExplicitArrayWrapper; + } + + //_.flattenDeep + interface LoDashStatic { + /** + * Recursively flattens a nested array. + * + * @param array The array to recursively flatten. + * @return Returns the new flattened array. + */ + flattenDeep(array: ListOfRecursiveArraysOrValues): T[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.flattenDeep + */ + flattenDeep(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.flattenDeep + */ + flattenDeep(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.flattenDeep + */ + flattenDeep(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.flattenDeep + */ + flattenDeep(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.flattenDeep + */ + flattenDeep(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.flattenDeep + */ + flattenDeep(): LoDashExplicitArrayWrapper; + } + + //_.fromPairs DUMMY + interface LoDashStatic { + /** + * The inverse of `_.toPairs`; this method returns an object composed + * from key-value `pairs`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} pairs The key-value pairs. + * @returns {Object} Returns the new object. + * @example + * + * _.fromPairs([['fred', 30], ['barney', 40]]); + * // => { 'fred': 30, 'barney': 40 } + */ + fromPairs( + array: any[]|List + ): Dictionary; + } + + //_.fromPairs DUMMY + interface LoDashImplicitArrayWrapper { + /** + * @see _.fromPairs + */ + fromPairs(): LoDashImplicitObjectWrapper; + } + + //_.fromPairs DUMMY + interface LoDashExplicitArrayWrapper { + /** + * @see _.fromPairs + */ + fromPairs(): LoDashExplicitObjectWrapper; + } + + //_.head + interface LoDashStatic { + /** + * Gets the first element of array. + * + * @alias _.first + * + * @param array The array to query. + * @return Returns the first element of array. + */ + head(array: List): T; + } + + interface LoDashImplicitWrapper { + /** + * @see _.head + */ + head(): string; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.head + */ + head(): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.head + */ + head(): T; + } + + interface LoDashExplicitWrapper { + /** + * @see _.head + */ + head(): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.head + */ + head(): T; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.head + */ + head(): T; + } + + //_.indexOf + interface LoDashStatic { + /** + * Gets the index at which the first occurrence of `value` is found in `array` + * using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons. If `fromIndex` is negative, it's used as the offset + * from the end of `array`. If `array` is sorted providing `true` for `fromIndex` + * performs a faster binary search. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to search. + * @param {*} value The value to search for. + * @param {number} [fromIndex=0] The index to search from. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.indexOf([1, 2, 1, 2], 2); + * // => 1 + * + * // using `fromIndex` + * _.indexOf([1, 2, 1, 2], 2, 2); + * // => 3 + */ + indexOf( + array: List, + value: T, + fromIndex?: boolean|number + ): number; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.indexOf + */ + indexOf( + value: T, + fromIndex?: boolean|number + ): number; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.indexOf + */ + indexOf( + value: TValue, + fromIndex?: boolean|number + ): number; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.indexOf + */ + indexOf( + value: T, + fromIndex?: boolean|number + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.indexOf + */ + indexOf( + value: TValue, + fromIndex?: boolean|number + ): LoDashExplicitWrapper; + } + + //_.intersectionBy DUMMY + interface LoDashStatic { + /** + * This method is like `_.intersection` except that it accepts `iteratee` + * which is invoked for each element of each `arrays` to generate the criterion + * by which uniqueness is computed. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of shared values. + * @example + * + * _.intersectionBy([2.1, 1.2], [4.3, 2.4], Math.floor); + * // => [2.1] + * + * // using the `_.property` iteratee shorthand + * _.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }] + */ + intersectionBy( + array: any[]|List, + ...values: any[] + ): any[]; + } + + //_.intersectionWith DUMMY + interface LoDashStatic { + /** + * This method is like `_.intersection` except that it accepts `comparator` + * which is invoked to compare elements of `arrays`. The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of shared values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.intersectionWith(objects, others, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }] + */ + intersectionWith( + array: any[]|List, + ...values: any[] + ): any[]; + } + + //_.join + interface LoDashStatic { + /** + * Converts all elements in `array` into a string separated by `separator`. + * + * @param array The array to convert. + * @param separator The element separator. + * @returns Returns the joined string. + */ + join( + array: List, + separator?: string + ): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.join + */ + join(separator?: string): string; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.join + */ + join(separator?: string): string; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.join + */ + join(separator?: string): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.join + */ + join(separator?: string): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.join + */ + join(separator?: string): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.join + */ + join(separator?: string): LoDashExplicitWrapper; + } + + //_.pullAll DUMMY + interface LoDashStatic { + /** + * This method is like `_.pull` except that it accepts an array of values to remove. + * + * **Note:** Unlike `_.difference`, this method mutates `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3, 1, 2, 3]; + * + * _.pull(array, [2, 3]); + * console.log(array); + * // => [1, 1] + */ + pullAll( + array: any[]|List, + ...values: any[] + ): any[]; + } + + //_.pullAllBy DUMMY + interface LoDashStatic { + /** + * This method is like `_.pullAll` except that it accepts `iteratee` which is + * invoked for each element of `array` and `values` to to generate the criterion + * by which uniqueness is computed. The iteratee is invoked with one argument: (value). + * + * **Note:** Unlike `_.differenceBy`, this method mutates `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns `array`. + * @example + * + * var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }]; + * + * _.pullAllBy(array, [{ 'x': 1 }, { 'x': 3 }], 'x'); + * console.log(array); + * // => [{ 'x': 2 }] + */ + pullAllBy( + array: any[]|List, + ...values: any[] + ): any[]; + } + + //_.reverse DUMMY + interface LoDashStatic { + /** + * Reverses `array` so that the first element becomes the last, the second + * element becomes the second to last, and so on. + * + * **Note:** This method mutates `array` and is based on + * [`Array#reverse`](https://mdn.io/Array/reverse). + * + * @memberOf _ + * @category Array + * @returns {Array} Returns `array`. + * @example + * + * var array = [1, 2, 3]; + * + * _.reverse(array); + * // => [3, 2, 1] + * + * console.log(array); + * // => [3, 2, 1] + */ + reverse( + array: any[]|List, + ...values: any[] + ): any[]; + } + + //_.sortedIndexOf + interface LoDashStatic { + /** + * This method is like `_.indexOf` except that it performs a binary + * search on a sorted `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to search. + * @param {*} value The value to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.sortedIndexOf([1, 1, 2, 2], 2); + * // => 2 + */ + sortedIndexOf( + array: List, + value: T + ): number; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.sortedIndexOf + */ + sortedIndexOf( + value: T + ): number; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.sortedIndexOf + */ + sortedIndexOf( + value: TValue + ): number; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.sortedIndexOf + */ + sortedIndexOf( + value: T + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.sortedIndexOf + */ + sortedIndexOf( + value: TValue + ): LoDashExplicitWrapper; + } + + //_.initial + interface LoDashStatic { + /** + * Gets all but the last element of array. + * + * @param array The array to query. + * @return Returns the slice of array. + */ + initial(array: List): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.initial + */ + initial(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.initial + */ + initial(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.initial + */ + initial(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.initial + */ + initial(): LoDashExplicitArrayWrapper; + } + + //_.intersection + interface LoDashStatic { + /** + * Creates an array of unique values that are included in all of the provided arrays using SameValueZero for + * equality comparisons. + * + * @param arrays The arrays to inspect. + * @return Returns the new array of shared values. + */ + intersection(...arrays: (T[]|List)[]): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.intersection + */ + intersection(...arrays: (TResult[]|List)[]): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.intersection + */ + intersection(...arrays: (TResult[]|List)[]): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.intersection + */ + intersection(...arrays: (TResult[]|List)[]): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.intersection + */ + intersection(...arrays: (TResult[]|List)[]): LoDashExplicitArrayWrapper; + } + + //_.last + interface LoDashStatic { + /** + * Gets the last element of array. + * + * @param array The array to query. + * @return Returns the last element of array. + */ + last(array: List): T; + } + + interface LoDashImplicitWrapper { + /** + * @see _.last + */ + last(): string; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.last + */ + last(): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.last + */ + last(): T; + } + + interface LoDashExplicitWrapper { + /** + * @see _.last + */ + last(): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.last + */ + last(): T; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.last + */ + last(): T; + } + + //_.lastIndexOf + interface LoDashStatic { + /** + * This method is like _.indexOf except that it iterates over elements of array from right to left. + * + * @param array The array to search. + * @param value The value to search for. + * @param fromIndex The index to search from or true to perform a binary search on a sorted array. + * @return Returns the index of the matched value, else -1. + */ + lastIndexOf( + array: List, + value: T, + fromIndex?: boolean|number + ): number; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.lastIndexOf + */ + lastIndexOf( + value: T, + fromIndex?: boolean|number + ): number; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.lastIndexOf + */ + lastIndexOf( + value: TResult, + fromIndex?: boolean|number + ): number; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.lastIndexOf + */ + lastIndexOf( + value: T, + fromIndex?: boolean|number + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.lastIndexOf + */ + lastIndexOf( + value: TResult, + fromIndex?: boolean|number + ): LoDashExplicitWrapper; + } + + //_.pull + interface LoDashStatic { + /** + * Removes all provided values from array using SameValueZero for equality comparisons. + * + * Note: Unlike _.without, this method mutates array. + * + * @param array The array to modify. + * @param values The values to remove. + * @return Returns array. + */ + pull( + array: T[], + ...values: T[] + ): T[]; + + /** + * @see _.pull + */ + pull( + array: List, + ...values: T[] + ): List; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.pull + */ + pull(...values: T[]): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.pull + */ + pull(...values: TValue[]): LoDashImplicitObjectWrapper>; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.pull + */ + pull(...values: T[]): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.pull + */ + pull(...values: TValue[]): LoDashExplicitObjectWrapper>; + } + + //_.pullAt + interface LoDashStatic { + /** + * Removes elements from array corresponding to the given indexes and returns an array of the removed elements. + * Indexes may be specified as an array of indexes or as individual arguments. + * + * Note: Unlike _.at, this method mutates array. + * + * @param array The array to modify. + * @param indexes The indexes of elements to remove, specified as individual indexes or arrays of indexes. + * @return Returns the new array of removed elements. + */ + pullAt( + array: List, + ...indexes: (number|number[])[] + ): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.pullAt + */ + pullAt(...indexes: (number|number[])[]): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.pullAt + */ + pullAt(...indexes: (number|number[])[]): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.pullAt + */ + pullAt(...indexes: (number|number[])[]): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.pullAt + */ + pullAt(...indexes: (number|number[])[]): LoDashExplicitArrayWrapper; + } + + //_.remove + interface LoDashStatic { + /** + * Removes all elements from array that predicate returns truthy for and returns an array of the removed + * elements. The predicate is bound to thisArg and invoked with three arguments: (value, index, array). + * + * If a property name is provided for predicate the created _.property style callback returns the property + * value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for predicate the created _.matches style callback returns true for elements that + * have the properties of the given object, else false. + * + * Note: Unlike _.filter, this method mutates array. + * + * @param array The array to modify. + * @param predicate The function invoked per iteration. + * @param thisArg The this binding of predicate. + * @return Returns the new array of removed elements. + */ + remove( + array: List, + predicate?: ListIterator + ): T[]; + + /** + * @see _.remove + */ + remove( + array: List, + predicate?: string + ): T[]; + + /** + * @see _.remove + */ + remove( + array: List, + predicate?: W + ): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.remove + */ + remove( + predicate?: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.remove + */ + remove( + predicate?: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.remove + */ + remove( + predicate?: W + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.remove + */ + remove( + predicate?: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.remove + */ + remove( + predicate?: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.remove + */ + remove( + predicate?: W + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.remove + */ + remove( + predicate?: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.remove + */ + remove( + predicate?: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.remove + */ + remove( + predicate?: W + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.remove + */ + remove( + predicate?: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.remove + */ + remove( + predicate?: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.remove + */ + remove( + predicate?: W + ): LoDashExplicitArrayWrapper; + } + + //_.tail + interface LoDashStatic { + /** + * Gets all but the first element of array. + * + * @alias _.tail + * + * @param array The array to query. + * @return Returns the slice of array. + */ + tail(array: List): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.tail + */ + tail(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.tail + */ + tail(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.tail + */ + tail(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.tail + */ + tail(): LoDashExplicitArrayWrapper; + } + + //_.slice + interface LoDashStatic { + /** + * Creates a slice of array from start up to, but not including, end. + * + * @param array The array to slice. + * @param start The start position. + * @param end The end position. + * @return Returns the slice of array. + */ + slice( + array: T[], + start?: number, + end?: number + ): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.slice + */ + slice( + start?: number, + end?: number + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.slice + */ + slice( + start?: number, + end?: number + ): LoDashExplicitArrayWrapper; + } + + //_.sortedIndex + interface LoDashStatic { + /** + * Uses a binary search to determine the lowest index at which `value` should + * be inserted into `array` in order to maintain its sort order. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @returns {number} Returns the index at which `value` should be inserted into `array`. + * @example + * + * _.sortedIndex([30, 50], 40); + * // => 1 + * + * _.sortedIndex([4, 5], 4); + * // => 0 + */ + sortedIndex( + array: List, + value: T + ): number; + + /** + * @see _.sortedIndex + */ + sortedIndex( + array: List, + value: T + ): number; + + /** + * @see _.sortedIndex + */ + sortedIndex( + array: List, + value: T + ): number; + + /** + * @see _.sortedIndex + */ + sortedIndex( + array: List, + value: T + ): number; + + /** + * @see _.sortedIndex + */ + sortedIndex( + array: List, + value: T + ): number; + } + + interface LoDashImplicitWrapper { + /** + * @see _.sortedIndex + */ + sortedIndex( + value: string + ): number; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.sortedIndex + */ + sortedIndex( + value: T + ): number; + + /** + * @see _.sortedIndex + */ + sortedIndex( + value: T + ): number; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.sortedIndex + */ + sortedIndex( + value: T + ): number; + + /** + * @see _.sortedIndex + */ + sortedIndex( + value: T + ): number; + + /** + * @see _.sortedIndex + */ + sortedIndex( + value: T + ): number; + } + + interface LoDashExplicitWrapper { + /** + * @see _.sortedIndex + */ + sortedIndex( + value: string + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.sortedIndex + */ + sortedIndex( + value: T + ): LoDashExplicitWrapper; + + /** + * @see _.sortedIndex + */ + sortedIndex( + value: T + ): LoDashExplicitWrapper; + + /** + * @see _.sortedIndex + */ + sortedIndex( + value: T + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.sortedIndex + */ + sortedIndex( + value: T + ): LoDashExplicitWrapper; + + /** + * @see _.sortedIndex + */ + sortedIndex( + value: T + ): LoDashExplicitWrapper; + + /** + * @see _.sortedIndex + */ + sortedIndex( + value: T + ): LoDashExplicitWrapper; + + + } + + //_.sortedIndexBy + interface LoDashStatic { + /** + * This method is like `_.sortedIndex` except that it accepts `iteratee` + * which is invoked for `value` and each element of `array` to compute their + * sort ranking. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the index at which `value` should be inserted into `array`. + * @example + * + * var dict = { 'thirty': 30, 'forty': 40, 'fifty': 50 }; + * + * _.sortedIndexBy(['thirty', 'fifty'], 'forty', _.propertyOf(dict)); + * // => 1 + * + * // using the `_.property` iteratee shorthand + * _.sortedIndexBy([{ 'x': 4 }, { 'x': 5 }], { 'x': 4 }, 'x'); + * // => 0 + */ + sortedIndexBy( + array: List, + value: T, + iteratee: (x: T) => TSort + ): number; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + array: List, + value: T, + iteratee: (x: T) => any + ): number; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + array: List, + value: T, + iteratee: string + ): number; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + array: List, + value: T, + iteratee: W + ): number; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + array: List, + value: T, + iteratee: Object + ): number; + } + + interface LoDashImplicitWrapper { + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: string, + iteratee: (x: string) => TSort + ): number; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: (x: T) => TSort + ): number; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: string + ): number; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: W + ): number; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: (x: T) => TSort + ): number; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: (x: T) => any + ): number; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: string + ): number; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: W + ): number; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: Object + ): number; + } + + interface LoDashExplicitWrapper { + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: string, + iteratee: (x: string) => TSort + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: (x: T) => TSort + ): LoDashExplicitWrapper; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: string + ): LoDashExplicitWrapper; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: W + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: (x: T) => TSort + ): LoDashExplicitWrapper; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: (x: T) => any + ): LoDashExplicitWrapper; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: string + ): LoDashExplicitWrapper; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: W + ): LoDashExplicitWrapper; + + /** + * @see _.sortedIndexBy + */ + sortedIndexBy( + value: T, + iteratee: Object + ): LoDashExplicitWrapper; + } + + //_.sortedLastIndex + interface LoDashStatic { + /** + * This method is like `_.sortedIndex` except that it returns the highest + * index at which `value` should be inserted into `array` in order to + * maintain its sort order. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @returns {number} Returns the index at which `value` should be inserted into `array`. + * @example + * + * _.sortedLastIndex([4, 5], 4); + * // => 1 + */ + sortedLastIndex( + array: List, + value: T + ): number; + + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + array: List, + value: T + ): number; + + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + array: List, + value: T + ): number; + + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + array: List, + value: T + ): number; + + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + array: List, + value: T + ): number; + } + + interface LoDashImplicitWrapper { + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + value: string + ): number; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + value: T + ): number; + + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + value: T + ): number; + + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + value: T + ): number; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + value: T + ): number; + + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + value: T + ): number; + + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + value: T + ): number; + } + + interface LoDashExplicitWrapper { + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + value: string + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + value: T + ): LoDashExplicitWrapper; + + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + value: T + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + value: T + ): LoDashExplicitWrapper; + + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + value: T + ): LoDashExplicitWrapper; + + /** + * @see _.sortedLastIndex + */ + sortedLastIndex( + value: T + ): LoDashExplicitWrapper; + } + + //_.sortedLastIndexBy + interface LoDashStatic { + /** + * This method is like `_.sortedLastIndex` except that it accepts `iteratee` + * which is invoked for `value` and each element of `array` to compute their + * sort ranking. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The sorted array to inspect. + * @param {*} value The value to evaluate. + * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the index at which `value` should be inserted into `array`. + * @example + * + * // using the `_.property` iteratee shorthand + * _.sortedLastIndexBy([{ 'x': 4 }, { 'x': 5 }], { 'x': 4 }, 'x'); + * // => 1 + */ + sortedLastIndexBy( + array: List, + value: T, + iteratee: (x: T) => TSort + ): number; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + array: List, + value: T, + iteratee: (x: T) => any + ): number; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + array: List, + value: T, + iteratee: string + ): number; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + array: List, + value: T, + iteratee: W + ): number; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + array: List, + value: T, + iteratee: Object + ): number; + } + + interface LoDashImplicitWrapper { + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: string, + iteratee: (x: string) => TSort + ): number; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: (x: T) => TSort + ): number; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: string + ): number; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: W + ): number; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: (x: T) => TSort + ): number; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: (x: T) => any + ): number; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: string + ): number; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: W + ): number; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: Object + ): number; + } + + interface LoDashExplicitWrapper { + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: string, + iteratee: (x: string) => TSort + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: (x: T) => TSort + ): LoDashExplicitWrapper; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: string + ): LoDashExplicitWrapper; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: W + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: (x: T) => TSort + ): LoDashExplicitWrapper; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: (x: T) => any + ): LoDashExplicitWrapper; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: string + ): LoDashExplicitWrapper; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: W + ): LoDashExplicitWrapper; + + /** + * @see _.sortedLastIndexBy + */ + sortedLastIndexBy( + value: T, + iteratee: Object + ): LoDashExplicitWrapper; + } + + //_.sortedLastIndexOf DUMMY + interface LoDashStatic { + /** + * This method is like `_.lastIndexOf` except that it performs a binary + * search on a sorted `array`. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to search. + * @param {*} value The value to search for. + * @returns {number} Returns the index of the matched value, else `-1`. + * @example + * + * _.sortedLastIndexOf([1, 1, 2, 2], 2); + * // => 3 + */ + sortedLastIndexOf( + array: any[]|List, + ...values: any[] + ): any[]; + } + + //_.tail + interface LoDashStatic { + /** + * @see _.rest + */ + tail(array: List): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.rest + */ + tail(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.rest + */ + tail(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.rest + */ + tail(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.rest + */ + tail(): LoDashExplicitArrayWrapper; + } + + //_.take + interface LoDashStatic { + /** + * Creates a slice of array with n elements taken from the beginning. + * + * @param array The array to query. + * @param n The number of elements to take. + * @return Returns the slice of array. + */ + take( + array: List, + n?: number + ): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.take + */ + take(n?: number): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.take + */ + take(n?: number): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.take + */ + take(n?: number): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.take + */ + take(n?: number): LoDashExplicitArrayWrapper; + } + + //_.takeRight + interface LoDashStatic { + /** + * Creates a slice of array with n elements taken from the end. + * + * @param array The array to query. + * @param n The number of elements to take. + * @return Returns the slice of array. + */ + takeRight( + array: List, + n?: number + ): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.takeRight + */ + takeRight(n?: number): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.takeRight + */ + takeRight(n?: number): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.takeRight + */ + takeRight(n?: number): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.takeRight + */ + takeRight(n?: number): LoDashExplicitArrayWrapper; + } + + //_.takeRightWhile + interface LoDashStatic { + /** + * Creates a slice of array with elements taken from the end. Elements are taken until predicate returns + * falsey. The predicate is bound to thisArg and invoked with three arguments: (value, index, array). + * + * If a property name is provided for predicate the created _.property style callback returns the property + * value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for predicate the created _.matches style callback returns true for elements that + * have the properties of the given object, else false. + * + * @param array The array to query. + * @param predicate The function invoked per iteration. + * @param thisArg The this binding of predicate. + * @return Returns the slice of array. + */ + takeRightWhile( + array: List, + predicate?: ListIterator + ): TValue[]; + + /** + * @see _.takeRightWhile + */ + takeRightWhile( + array: List, + predicate?: string + ): TValue[]; + + /** + * @see _.takeRightWhile + */ + takeRightWhile( + array: List, + predicate?: TWhere + ): TValue[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.takeRightWhile + */ + takeRightWhile( + predicate?: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.takeRightWhile + */ + takeRightWhile( + predicate?: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.takeRightWhile + */ + takeRightWhile( + predicate?: TWhere + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.takeRightWhile + */ + takeRightWhile( + predicate?: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.takeRightWhile + */ + takeRightWhile( + predicate?: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.takeRightWhile + */ + takeRightWhile( + predicate?: TWhere + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.takeRightWhile + */ + takeRightWhile( + predicate?: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.takeRightWhile + */ + takeRightWhile( + predicate?: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.takeRightWhile + */ + takeRightWhile( + predicate?: TWhere + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.takeRightWhile + */ + takeRightWhile( + predicate?: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.takeRightWhile + */ + takeRightWhile( + predicate?: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.takeRightWhile + */ + takeRightWhile( + predicate?: TWhere + ): LoDashExplicitArrayWrapper; + } + + //_.takeWhile + interface LoDashStatic { + /** + * Creates a slice of array with elements taken from the beginning. Elements are taken until predicate returns + * falsey. The predicate is bound to thisArg and invoked with three arguments: (value, index, array). + * + * If a property name is provided for predicate the created _.property style callback returns the property + * value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for predicate the created _.matches style callback returns true for elements that + * have the properties of the given object, else false. + * + * @param array The array to query. + * @param predicate The function invoked per iteration. + * @param thisArg The this binding of predicate. + * @return Returns the slice of array. + */ + takeWhile( + array: List, + predicate?: ListIterator + ): TValue[]; + + /** + * @see _.takeWhile + */ + takeWhile( + array: List, + predicate?: string + ): TValue[]; + + /** + * @see _.takeWhile + */ + takeWhile( + array: List, + predicate?: TWhere + ): TValue[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.takeWhile + */ + takeWhile( + predicate?: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.takeWhile + */ + takeWhile( + predicate?: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.takeWhile + */ + takeWhile( + predicate?: TWhere + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.takeWhile + */ + takeWhile( + predicate?: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.takeWhile + */ + takeWhile( + predicate?: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.takeWhile + */ + takeWhile( + predicate?: TWhere + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.takeWhile + */ + takeWhile( + predicate?: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.takeWhile + */ + takeWhile( + predicate?: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.takeWhile + */ + takeWhile( + predicate?: TWhere + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.takeWhile + */ + takeWhile( + predicate?: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.takeWhile + */ + takeWhile( + predicate?: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.takeWhile + */ + takeWhile( + predicate?: TWhere + ): LoDashExplicitArrayWrapper; + } + + //_.union + interface LoDashStatic { + /** + * Creates an array of unique values, in order, from all of the provided arrays using SameValueZero for + * equality comparisons. + * + * @param arrays The arrays to inspect. + * @return Returns the new array of combined values. + */ + union(...arrays: List[]): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.union + */ + union(...arrays: List[]): LoDashImplicitArrayWrapper; + + /** + * @see _.union + */ + union(...arrays: List[]): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.union + */ + union(...arrays: List[]): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.union + */ + union(...arrays: List[]): LoDashExplicitArrayWrapper; + + /** + * @see _.union + */ + union(...arrays: List[]): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.union + */ + union(...arrays: List[]): LoDashExplicitArrayWrapper; + } + + //_.unionBy + interface LoDashStatic { + /** + * This method is like `_.union` except that it accepts `iteratee` which is + * invoked for each element of each `arrays` to generate the criterion by which + * uniqueness is computed. The iteratee is invoked with one argument: (value). + * + * @param arrays The arrays to inspect. + * @param iteratee The iteratee invoked per element. + * @return Returns the new array of combined values. + */ + unionBy( + arrays: T[]|List, + iteratee?: (value: T) => any + ): T[]; + + /** + * @see _.unionBy + */ + unionBy( + arrays: T[]|List, + iteratee?: W + ): T[]; + + /** + * @see _.unionBy + */ + unionBy( + arrays1: T[]|List, + arrays2: T[]|List, + iteratee?: (value: T) => any + ): T[]; + + /** + * @see _.unionBy + */ + unionBy( + arrays1: T[]|List, + arrays2: T[]|List, + iteratee?: W + ): T[]; + + /** + * @see _.unionBy + */ + unionBy( + arrays1: T[]|List, + arrays2: T[]|List, + arrays3: T[]|List, + iteratee?: (value: T) => any + ): T[]; + + /** + * @see _.unionBy + */ + unionBy( + arrays1: T[]|List, + arrays2: T[]|List, + arrays3: T[]|List, + iteratee?: W + ): T[]; + + /** + * @see _.unionBy + */ + unionBy( + arrays1: T[]|List, + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + iteratee?: (value: T) => any + ): T[]; + + /** + * @see _.unionBy + */ + unionBy( + arrays1: T[]|List, + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + iteratee?: W + ): T[]; + + /** + * @see _.unionBy + */ + unionBy( + arrays1: T[]|List, + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + arrays5: T[]|List, + iteratee?: (value: T) => any + ): T[]; + + /** + * @see _.unionBy + */ + unionBy( + arrays1: T[]|List, + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + arrays5: T[]|List, + iteratee?: W + ): T[]; + + /** + * @see _.unionBy + */ + unionBy( + arrays: T[]|List, + ...iteratee: any[] + ): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.unionBy + */ + unionBy( + iteratee?: (value: T) => any + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + iteratee?: (value: T) => any + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + iteratee?: (value: T) => any + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + iteratee?: (value: T) => any + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + arrays5: T[]|List, + iteratee?: (value: T) => any + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + arrays5: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + ...iteratee: any[] + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.unionBy + */ + unionBy( + iteratee?: (value: T) => any + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + iteratee?: (value: T) => any + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + iteratee?: (value: T) => any + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + iteratee?: (value: T) => any + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + arrays5: T[]|List, + iteratee?: (value: T) => any + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + arrays5: T[]|List, + iteratee?: W + ): LoDashImplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + ...iteratee: any[] + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.unionBy + */ + unionBy( + iteratee?: (value: T) => any + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + iteratee?: (value: T) => any + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + iteratee?: (value: T) => any + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + iteratee?: (value: T) => any + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + arrays5: T[]|List, + iteratee?: (value: T) => any + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + arrays5: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + ...iteratee: any[] + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.unionBy + */ + unionBy( + iteratee?: (value: T) => any + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + iteratee?: (value: T) => any + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + iteratee?: (value: T) => any + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + iteratee?: (value: T) => any + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + arrays5: T[]|List, + iteratee?: (value: T) => any + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + arrays2: T[]|List, + arrays3: T[]|List, + arrays4: T[]|List, + arrays5: T[]|List, + iteratee?: W + ): LoDashExplicitArrayWrapper; + + /** + * @see _.unionBy + */ + unionBy( + ...iteratee: any[] + ): LoDashExplicitArrayWrapper; + } + + //_.uniq + interface LoDashStatic { + /** + * Creates a duplicate-free version of an array, using + * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * for equality comparisons, in which only the first occurrence of each element + * is kept. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to inspect. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.uniq([2, 1, 2]); + * // => [2, 1] + */ + uniq( + array: List + ): T[]; + + /** + * @see _.uniq + */ + uniq( + array: List + ): T[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.uniq + */ + uniq(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.uniq + */ + uniq(): LoDashImplicitArrayWrapper; + + /** + * @see _.uniq + */ + uniq(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + uniq(): LoDashImplicitArrayWrapper; + + /** + * @see _.uniq + */ + uniq(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.uniq + */ + uniq(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.uniq + */ + uniq(): LoDashExplicitArrayWrapper; + + /** + * @see _.uniq + */ + uniq(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.uniq + */ + uniq(): LoDashExplicitArrayWrapper; + + /** + * @see _.uniq + */ + uniq(): LoDashExplicitArrayWrapper; + } + + //_.uniqBy + interface LoDashStatic { + /** + * This method is like `_.uniq` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the criterion by which + * uniqueness is computed. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to inspect. + * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.uniqBy([2.1, 1.2, 2.3], Math.floor); + * // => [2.1, 1.2] + * + * // using the `_.property` iteratee shorthand + * _.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 1 }, { 'x': 2 }] + */ + uniqBy( + array: List, + iteratee: ListIterator + ): T[]; + + /** + * @see _.uniqBy + */ + uniqBy( + array: List, + iteratee: ListIterator + ): T[]; + + /** + * @see _.uniqBy + */ + uniqBy( + array: List, + iteratee: string + ): T[]; + + /** + * @see _.uniqBy + */ + uniqBy( + array: List, + iteratee: Object + ): T[]; + + /** + * @see _.uniqBy + */ + uniqBy( + array: List, + iteratee: TWhere + ): T[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: ListIterator + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: TWhere + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: Object + ): LoDashImplicitArrayWrapper; + + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: TWhere + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: ListIterator + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: TWhere + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: Object + ): LoDashExplicitArrayWrapper; + + /** + * @see _.uniqBy + */ + uniqBy( + iteratee: TWhere + ): LoDashExplicitArrayWrapper; + } + + //_.sortedUniq + interface LoDashStatic { + /** + * This method is like `_.uniq` except that it's designed and optimized + * for sorted arrays. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to inspect. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.sortedUniq([1, 1, 2]); + * // => [1, 2] + */ + sortedUniq( + array: List + ): T[]; + + /** + * @see _.sortedUniq + */ + sortedUniq( + array: List + ): T[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.sortedUniq + */ + sortedUniq(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.sortedUniq + */ + sortedUniq(): LoDashImplicitArrayWrapper; + + /** + * @see _.sortedUniq + */ + sortedUniq(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + sortedUniq(): LoDashImplicitArrayWrapper; + + /** + * @see _.sortedUniq + */ + sortedUniq(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.sortedUniq + */ + sortedUniq(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.sortedUniq + */ + sortedUniq(): LoDashExplicitArrayWrapper; + + /** + * @see _.sortedUniq + */ + sortedUniq(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.sortedUniq + */ + sortedUniq(): LoDashExplicitArrayWrapper; + + /** + * @see _.sortedUniq + */ + sortedUniq(): LoDashExplicitArrayWrapper; + } + + //_.sortedUniqBy + interface LoDashStatic { + /** + * This method is like `_.uniqBy` except that it's designed and optimized + * for sorted arrays. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [iteratee] The iteratee invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor); + * // => [1.1, 2.2] + */ + sortedUniqBy( + array: List, + iteratee: ListIterator + ): T[]; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + array: List, + iteratee: ListIterator + ): T[]; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + array: List, + iteratee: string + ): T[]; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + array: List, + iteratee: Object + ): T[]; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + array: List, + iteratee: TWhere + ): T[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: ListIterator + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: TWhere + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: Object + ): LoDashImplicitArrayWrapper; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: TWhere + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: ListIterator + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: TWhere + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: Object + ): LoDashExplicitArrayWrapper; + + /** + * @see _.sortedUniqBy + */ + sortedUniqBy( + iteratee: TWhere + ): LoDashExplicitArrayWrapper; + } + + //_.unionWith DUMMY + interface LoDashStatic { + /** + * This method is like `_.union` except that it accepts `comparator` which + * is invoked to compare elements of `arrays`. The comparator is invoked + * with two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of combined values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.unionWith(objects, others, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] + */ + unionWith( + array: any[]|List, + ...values: any[] + ): any[]; + } + + //_.uniqWith DUMMY + interface LoDashStatic { + /** + * This method is like `_.uniq` except that it accepts `comparator` which + * is invoked to compare elements of `array`. The comparator is invoked with + * two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new duplicate free array. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.uniqWith(objects, _.isEqual); + * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }] + */ + uniqWith( + array: any[]|List, + ...values: any[] + ): any[]; + } + + //_.unzip + interface LoDashStatic { + /** + * This method is like _.zip except that it accepts an array of grouped elements and creates an array + * regrouping the elements to their pre-zip configuration. + * + * @param array The array of grouped elements to process. + * @return Returns the new array of regrouped elements. + */ + unzip(array: List>): T[][]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.unzip + */ + unzip(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.unzip + */ + unzip(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.unzip + */ + unzip(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.unzip + */ + unzip(): LoDashExplicitArrayWrapper; + } + + //_.unzipWith + interface LoDashStatic { + /** + * This method is like _.unzip except that it accepts an iteratee to specify how regrouped values should be + * combined. The iteratee is bound to thisArg and invoked with four arguments: (accumulator, value, index, + * group). + * + * @param array The array of grouped elements to process. + * @param iteratee The function to combine regrouped values. + * @param thisArg The this binding of iteratee. + * @return Returns the new array of regrouped elements. + */ + unzipWith( + array: List>, + iteratee?: MemoIterator + ): TResult[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.unzipWith + */ + unzipWith( + iteratee?: MemoIterator + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.unzipWith + */ + unzipWith( + iteratee?: MemoIterator + ): LoDashImplicitArrayWrapper; + } + + //_.without + interface LoDashStatic { + /** + * Creates an array excluding all provided values using SameValueZero for equality comparisons. + * + * @param array The array to filter. + * @param values The values to exclude. + * @return Returns the new array of filtered values. + */ + without( + array: List, + ...values: T[] + ): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.without + */ + without(...values: T[]): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.without + */ + without(...values: T[]): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.without + */ + without(...values: T[]): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.without + */ + without(...values: T[]): LoDashExplicitArrayWrapper; + } + + //_.xor + interface LoDashStatic { + /** + * Creates an array of unique values that is the symmetric difference of the provided arrays. + * + * @param arrays The arrays to inspect. + * @return Returns the new array of values. + */ + xor(...arrays: List[]): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.xor + */ + xor(...arrays: List[]): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.xor + */ + xor(...arrays: List[]): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.xor + */ + xor(...arrays: List[]): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.xor + */ + xor(...arrays: List[]): LoDashExplicitArrayWrapper; + } + + //_.xorBy DUMMY + interface LoDashStatic { + /** + * This method is like `_.xor` except that it accepts `iteratee` which is + * invoked for each element of each `arrays` to generate the criterion by which + * uniqueness is computed. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns the new array of values. + * @example + * + * _.xorBy([2.1, 1.2], [4.3, 2.4], Math.floor); + * // => [1.2, 4.3] + * + * // using the `_.property` iteratee shorthand + * _.xorBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); + * // => [{ 'x': 2 }] + */ + xorBy( + array: any[]|List, + ...values: any[] + ): any[]; + } + + //_.xorWith DUMMY + interface LoDashStatic { + /** + * This method is like `_.xor` except that it accepts `comparator` which is + * invoked to compare elements of `arrays`. The comparator is invoked with + * two arguments: (arrVal, othVal). + * + * @static + * @memberOf _ + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @param {Function} [comparator] The comparator invoked per element. + * @returns {Array} Returns the new array of values. + * @example + * + * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; + * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; + * + * _.xorWith(objects, others, _.isEqual); + * // => [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] + */ + xorWith( + array: any[]|List, + ...values: any[] + ): any[]; + } + + //_.zip + interface LoDashStatic { + /** + * Creates an array of grouped elements, the first of which contains the first elements of the given arrays, + * the second of which contains the second elements of the given arrays, and so on. + * + * @param arrays The arrays to process. + * @return Returns the new array of grouped elements. + */ + zip(...arrays: List[]): T[][]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.zip + */ + zip(...arrays: List[]): _.LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.zip + */ + zip(...arrays: List[]): _.LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.zip + */ + zip(...arrays: List[]): _.LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.zip + */ + zip(...arrays: List[]): _.LoDashExplicitArrayWrapper; + } + + //_.zipObject + interface LoDashStatic { + /** + * The inverse of _.pairs; this method returns an object composed from arrays of property names and values. + * Provide either a single two dimensional array, e.g. [[key1, value1], [key2, value2]] or two arrays, one of + * property names and one of corresponding values. + * + * @param props The property names. + * @param values The property values. + * @return Returns the new object. + */ + zipObject( + props: List|List>, + values?: List + ): TResult; + + /** + * @see _.zipObject + */ + zipObject( + props: List|List>, + values?: List + ): TResult; + + /** + * @see _.zipObject + */ + zipObject( + props: List|List>, + values?: List + ): _.Dictionary; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.zipObject + */ + zipObject( + values?: List + ): _.LoDashImplicitObjectWrapper; + + /** + * @see _.zipObject + */ + zipObject( + values?: List + ): _.LoDashImplicitObjectWrapper; + + /** + * @see _.zipObject + */ + zipObject( + values?: List + ): _.LoDashImplicitObjectWrapper<_.Dictionary>; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.zipObject + */ + zipObject( + values?: List + ): _.LoDashImplicitObjectWrapper; + + /** + * @see _.zipObject + */ + zipObject( + values?: List + ): _.LoDashImplicitObjectWrapper; + + /** + * @see _.zipObject + */ + zipObject( + values?: List + ): _.LoDashImplicitObjectWrapper<_.Dictionary>; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.zipObject + */ + zipObject( + values?: List + ): _.LoDashExplicitObjectWrapper; + + /** + * @see _.zipObject + */ + zipObject( + values?: List + ): _.LoDashExplicitObjectWrapper; + + /** + * @see _.zipObject + */ + zipObject( + values?: List + ): _.LoDashExplicitObjectWrapper<_.Dictionary>; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.zipObject + */ + zipObject( + values?: List + ): _.LoDashExplicitObjectWrapper; + + /** + * @see _.zipObject + */ + zipObject( + values?: List + ): _.LoDashExplicitObjectWrapper; + + /** + * @see _.zipObject + */ + zipObject( + values?: List + ): _.LoDashExplicitObjectWrapper<_.Dictionary>; + } + + //_.zipWith + interface LoDashStatic { + /** + * This method is like _.zip except that it accepts an iteratee to specify how grouped values should be + * combined. The iteratee is bound to thisArg and invoked with four arguments: (accumulator, value, index, + * group). + * @param {...Array} [arrays] The arrays to process. + * @param {Function} [iteratee] The function to combine grouped values. + * @param {*} [thisArg] The `this` binding of `iteratee`. + * @return Returns the new array of grouped elements. + */ + zipWith(...args: any[]): TResult[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.zipWith + */ + zipWith(...args: any[]): LoDashImplicitArrayWrapper; + } + + /********* + * Chain * + *********/ + + //_.chain + interface LoDashStatic { + /** + * Creates a lodash object that wraps value with explicit method chaining enabled. + * + * @param value The value to wrap. + * @return Returns the new lodash wrapper instance. + */ + chain(value: number): LoDashExplicitWrapper; + chain(value: string): LoDashExplicitWrapper; + chain(value: boolean): LoDashExplicitWrapper; + chain(value: T[]): LoDashExplicitArrayWrapper; + chain(value: T): LoDashExplicitObjectWrapper; + chain(value: any): LoDashExplicitWrapper; + } + + interface LoDashImplicitWrapper { + /** + * @see _.chain + */ + chain(): LoDashExplicitWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.chain + */ + chain(): LoDashExplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.chain + */ + chain(): LoDashExplicitObjectWrapper; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.chain + */ + chain(): TWrapper; + } + + //_.tap + interface LoDashStatic { + /** + * This method invokes interceptor and returns value. The interceptor is bound to thisArg and invoked with one + * argument; (value). The purpose of this method is to "tap into" a method chain in order to perform operations + * on intermediate results within the chain. + * + * @param value The value to provide to interceptor. + * @param interceptor The function to invoke. + * @parem thisArg The this binding of interceptor. + * @return Returns value. + **/ + tap( + value: T, + interceptor: (value: T) => void + ): T; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.tap + */ + tap( + interceptor: (value: T) => void + ): TWrapper; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.tap + */ + tap( + interceptor: (value: T) => void + ): TWrapper; + } + + //_.thru + interface LoDashStatic { + /** + * This method is like _.tap except that it returns the result of interceptor. + * + * @param value The value to provide to interceptor. + * @param interceptor The function to invoke. + * @param thisArg The this binding of interceptor. + * @return Returns the result of interceptor. + */ + thru( + value: T, + interceptor: (value: T) => TResult + ): TResult; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.thru + */ + thru( + interceptor: (value: T) => TResult): LoDashImplicitWrapper; + + /** + * @see _.thru + */ + thru( + interceptor: (value: T) => TResult): LoDashImplicitWrapper; + + /** + * @see _.thru + */ + thru( + interceptor: (value: T) => TResult): LoDashImplicitWrapper; + + /** + * @see _.thru + */ + thru( + interceptor: (value: T) => TResult): LoDashImplicitObjectWrapper; + + /** + * @see _.thru + */ + thru( + interceptor: (value: T) => TResult[]): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.thru + */ + thru( + interceptor: (value: T) => TResult + ): LoDashExplicitWrapper; + + /** + * @see _.thru + */ + thru( + interceptor: (value: T) => TResult + ): LoDashExplicitWrapper; + + /** + * @see _.thru + */ + thru( + interceptor: (value: T) => TResult + ): LoDashExplicitWrapper; + + /** + * @see _.thru + */ + thru( + interceptor: (value: T) => TResult + ): LoDashExplicitObjectWrapper; + + /** + * @see _.thru + */ + thru( + interceptor: (value: T) => TResult[] + ): LoDashExplicitArrayWrapper; + } + + //_.prototype.commit + interface LoDashImplicitWrapperBase { + /** + * Executes the chained sequence and returns the wrapped result. + * + * @return Returns the new lodash wrapper instance. + */ + commit(): TWrapper; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.commit + */ + commit(): TWrapper; + } + + //_.prototype.concat + interface LoDashImplicitWrapperBase { + /** + * Creates a new array joining a wrapped array with any additional arrays and/or values. + * + * @param items + * @return Returns the new concatenated array. + */ + concat(...items: Array>): LoDashImplicitArrayWrapper; + + /** + * @see _.concat + */ + concat(...items: Array>): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.concat + */ + concat(...items: Array>): LoDashExplicitArrayWrapper; + + /** + * @see _.concat + */ + concat(...items: Array>): LoDashExplicitArrayWrapper; + } + + //_.prototype.plant + interface LoDashImplicitWrapperBase { + /** + * Creates a clone of the chained sequence planting value as the wrapped value. + * @param value The value to plant as the wrapped value. + * @return Returns the new lodash wrapper instance. + */ + plant(value: number): LoDashImplicitWrapper; + + /** + * @see _.plant + */ + plant(value: string): LoDashImplicitStringWrapper; + + /** + * @see _.plant + */ + plant(value: boolean): LoDashImplicitWrapper; + + /** + * @see _.plant + */ + plant(value: number[]): LoDashImplicitNumberArrayWrapper; + + /** + * @see _.plant + */ + plant(value: T[]): LoDashImplicitArrayWrapper; + + /** + * @see _.plant + */ + plant(value: T): LoDashImplicitObjectWrapper; + + /** + * @see _.plant + */ + plant(value: any): LoDashImplicitWrapper; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.plant + */ + plant(value: number): LoDashExplicitWrapper; + + /** + * @see _.plant + */ + plant(value: string): LoDashExplicitStringWrapper; + + /** + * @see _.plant + */ + plant(value: boolean): LoDashExplicitWrapper; + + /** + * @see _.plant + */ + plant(value: number[]): LoDashExplicitNumberArrayWrapper; + + /** + * @see _.plant + */ + plant(value: T[]): LoDashExplicitArrayWrapper; + + /** + * @see _.plant + */ + plant(value: T): LoDashExplicitObjectWrapper; + + /** + * @see _.plant + */ + plant(value: any): LoDashExplicitWrapper; + } + + //_.prototype.reverse + interface LoDashImplicitArrayWrapper { + /** + * Reverses the wrapped array so the first element becomes the last, the second element becomes the second to + * last, and so on. + * + * Note: This method mutates the wrapped array. + * + * @return Returns the new reversed lodash wrapper instance. + */ + reverse(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.reverse + */ + reverse(): LoDashExplicitArrayWrapper; + } + + //_.prototype.toJSON + interface LoDashWrapperBase { + /** + * @see _.value + */ + toJSON(): T; + } + + //_.prototype.toString + interface LoDashWrapperBase { + /** + * Produces the result of coercing the unwrapped value to a string. + * + * @return Returns the coerced string value. + */ + toString(): string; + } + + //_.prototype.value + interface LoDashWrapperBase { + /** + * Executes the chained sequence to extract the unwrapped value. + * + * @alias _.toJSON, _.valueOf + * + * @return Returns the resolved unwrapped value. + */ + value(): T; + } + + //_.valueOf + interface LoDashWrapperBase { + /** + * @see _.value + */ + valueOf(): T; + } + + /************** + * Collection * + **************/ + + //_.at + interface LoDashStatic { + /** + * Creates an array of elements corresponding to the given keys, or indexes, of collection. Keys may be + * specified as individual arguments or as arrays of keys. + * + * @param collection The collection to iterate over. + * @param props The property names or indexes of elements to pick, specified individually or in arrays. + * @return Returns the new array of picked elements. + */ + at( + collection: List|Dictionary, + ...props: (number|string|(number|string)[])[] + ): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.at + */ + at(...props: (number|string|(number|string)[])[]): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.at + */ + at(...props: (number|string|(number|string)[])[]): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.at + */ + at(...props: (number|string|(number|string)[])[]): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.at + */ + at(...props: (number|string|(number|string)[])[]): LoDashExplicitArrayWrapper; + } + + //_.countBy + interface LoDashStatic { + /** + * Creates an object composed of keys generated from the results of running each element of collection through + * iteratee. The corresponding value of each key is the number of times the key was returned by iteratee. The + * iteratee is bound to thisArg and invoked with three arguments: + * (value, index|key, collection). + * + * If a property name is provided for iteratee the created _.property style callback returns the property + * value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for iteratee the created _.matches style callback returns true for elements that + * have the properties of the given object, else false. + * + * @param collection The collection to iterate over. + * @param iteratee The function invoked per iteration. + * @param thisArg The this binding of iteratee. + * @return Returns the composed aggregate object. + */ + countBy( + collection: List, + iteratee?: ListIterator + ): Dictionary; + + /** + * @see _.countBy + */ + countBy( + collection: Dictionary, + iteratee?: DictionaryIterator + ): Dictionary; + + /** + * @see _.countBy + */ + countBy( + collection: NumericDictionary, + iteratee?: NumericDictionaryIterator + ): Dictionary; + + /** + * @see _.countBy + */ + countBy( + collection: List|Dictionary|NumericDictionary, + iteratee?: string + ): Dictionary; + + /** + * @see _.countBy + */ + countBy( + collection: List|Dictionary|NumericDictionary, + iteratee?: W + ): Dictionary; + + /** + * @see _.countBy + */ + countBy( + collection: List|Dictionary|NumericDictionary, + iteratee?: Object + ): Dictionary; + } + + interface LoDashImplicitWrapper { + /** + * @see _.countBy + */ + countBy( + iteratee?: ListIterator + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.countBy + */ + countBy( + iteratee?: ListIterator + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.countBy + */ + countBy( + iteratee?: string + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.countBy + */ + countBy( + iteratee?: W + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.countBy + */ + countBy( + iteratee?: ListIterator|DictionaryIterator|NumericDictionaryIterator + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.countBy + */ + countBy( + iteratee?: string + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.countBy + */ + countBy( + iteratee?: W + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashExplicitWrapper { + /** + * @see _.countBy + */ + countBy( + iteratee?: ListIterator + ): LoDashExplicitObjectWrapper>; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.countBy + */ + countBy( + iteratee?: ListIterator + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.countBy + */ + countBy( + iteratee?: string + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.countBy + */ + countBy( + iteratee?: W + ): LoDashExplicitObjectWrapper>; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.countBy + */ + countBy( + iteratee?: ListIterator|DictionaryIterator|NumericDictionaryIterator + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.countBy + */ + countBy( + iteratee?: string + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.countBy + */ + countBy( + iteratee?: W + ): LoDashExplicitObjectWrapper>; + } + + //_.each + interface LoDashStatic { + /** + * @see _.forEach + */ + each( + collection: T[], + iteratee?: ListIterator + ): T[]; + + /** + * @see _.forEach + */ + each( + collection: List, + iteratee?: ListIterator + ): List; + + /** + * @see _.forEach + */ + each( + collection: Dictionary, + iteratee?: DictionaryIterator + ): Dictionary; + + /** + * @see _.forEach + */ + each( + collection: T, + iteratee?: ObjectIterator + ): T; + + /** + * @see _.forEach + */ + each( + collection: T, + iteratee?: ObjectIterator + ): T; + } + + interface LoDashImplicitWrapper { + /** + * @see _.forEach + */ + each( + iteratee: ListIterator + ): LoDashImplicitWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.forEach + */ + each( + iteratee: ListIterator + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.forEach + */ + each( + iteratee?: ListIterator|DictionaryIterator + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.forEach + */ + each( + iteratee: ListIterator + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.forEach + */ + each( + iteratee: ListIterator + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.forEach + */ + each( + iteratee?: ListIterator|DictionaryIterator + ): LoDashExplicitObjectWrapper; + } + + //_.eachRight + interface LoDashStatic { + /** + * @see _.forEachRight + */ + eachRight( + collection: T[], + iteratee?: ListIterator + ): T[]; + + /** + * @see _.forEachRight + */ + eachRight( + collection: List, + iteratee?: ListIterator + ): List; + + /** + * @see _.forEachRight + */ + eachRight( + collection: Dictionary, + iteratee?: DictionaryIterator + ): Dictionary; + + /** + * @see _.forEachRight + */ + eachRight( + collection: T, + iteratee?: ObjectIterator + ): T; + + /** + * @see _.forEachRight + */ + eachRight( + collection: T, + iteratee?: ObjectIterator + ): T; + } + + interface LoDashImplicitWrapper { + /** + * @see _.forEachRight + */ + eachRight( + iteratee: ListIterator + ): LoDashImplicitWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.forEachRight + */ + eachRight( + iteratee: ListIterator + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.forEachRight + */ + eachRight( + iteratee?: ListIterator|DictionaryIterator + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.forEachRight + */ + eachRight( + iteratee: ListIterator + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.forEachRight + */ + eachRight( + iteratee: ListIterator + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.forEachRight + */ + eachRight( + iteratee?: ListIterator|DictionaryIterator + ): LoDashExplicitObjectWrapper; + } + + //_.every + interface LoDashStatic { + /** + * Checks if predicate returns truthy for all elements of collection. Iteration is stopped once predicate + * returns falsey. The predicate is invoked with three arguments: (value, index|key, collection). + * + * @param collection The collection to iterate over. + * @param predicate The function invoked per iteration. + * @return Returns true if all elements pass the predicate check, else false. + */ + every( + collection: List, + predicate?: ListIterator + ): boolean; + + /** + * @see _.every + */ + every( + collection: Dictionary, + predicate?: DictionaryIterator + ): boolean; + + /** + * @see _.every + */ + every( + collection: NumericDictionary, + predicate?: NumericDictionaryIterator + ): boolean; + + /** + * @see _.every + */ + every( + collection: List|Dictionary|NumericDictionary, + predicate?: string|any[] + ): boolean; + + /** + * @see _.every + */ + every( + collection: List|Dictionary|NumericDictionary, + predicate?: TObject + ): boolean; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.every + */ + every( + predicate?: ListIterator|NumericDictionaryIterator + ): boolean; + + /** + * @see _.every + */ + every( + predicate?: string|any[] + ): boolean; + + /** + * @see _.every + */ + every( + predicate?: TObject + ): boolean; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.every + */ + every( + predicate?: ListIterator|DictionaryIterator|NumericDictionaryIterator + ): boolean; + + /** + * @see _.every + */ + every( + predicate?: string|any[] + ): boolean; + + /** + * @see _.every + */ + every( + predicate?: TObject + ): boolean; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.every + */ + every( + predicate?: ListIterator|NumericDictionaryIterator + ): LoDashExplicitWrapper; + + /** + * @see _.every + */ + every( + predicate?: string|any[] + ): LoDashExplicitWrapper; + + /** + * @see _.every + */ + every( + predicate?: TObject + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.every + */ + every( + predicate?: ListIterator|DictionaryIterator|NumericDictionaryIterator + ): LoDashExplicitWrapper; + + /** + * @see _.every + */ + every( + predicate?: string|any[] + ): LoDashExplicitWrapper; + + /** + * @see _.every + */ + every( + predicate?: TObject + ): LoDashExplicitWrapper; + } + + //_.filter + interface LoDashStatic { + /** + * Iterates over elements of collection, returning an array of all elements predicate returns truthy for. The + * predicate is bound to thisArg and invoked with three arguments: (value, index|key, collection). + * + * If a property name is provided for predicate the created _.property style callback returns the property + * value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for predicate the created _.matches style callback returns true for elements that + * have the properties of the given object, else false. + * + * @param collection The collection to iterate over. + * @param predicate The function invoked per iteration. + * @param thisArg The this binding of predicate. + * @return Returns the new filtered array. + */ + filter( + collection: List, + predicate?: ListIterator + ): T[]; + + /** + * @see _.filter + */ + filter( + collection: Dictionary, + predicate?: DictionaryIterator + ): T[]; + + /** + * @see _.filter + */ + filter( + collection: string, + predicate?: StringIterator + ): string[]; + + /** + * @see _.filter + */ + filter( + collection: List|Dictionary, + predicate: string + ): T[]; + + /** + * @see _.filter + */ + filter( + collection: List|Dictionary, + predicate: W + ): T[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.filter + */ + filter( + predicate?: StringIterator + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.filter + */ + filter( + predicate: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.filter + */ + filter( + predicate: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.filter + */ + filter(predicate: W): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.filter + */ + filter( + predicate: ListIterator|DictionaryIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.filter + */ + filter( + predicate: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.filter + */ + filter(predicate: W): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.filter + */ + filter( + predicate?: StringIterator + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.filter + */ + filter( + predicate: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.filter + */ + filter( + predicate: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.filter + */ + filter(predicate: W): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.filter + */ + filter( + predicate: ListIterator|DictionaryIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.filter + */ + filter( + predicate: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.filter + */ + filter(predicate: W): LoDashExplicitArrayWrapper; + } + + //_.find + interface LoDashStatic { + /** + * Iterates over elements of collection, returning the first element predicate returns truthy for. + * The predicate is bound to thisArg and invoked with three arguments: (value, index|key, collection). + * + * If a property name is provided for predicate the created _.property style callback returns the property + * value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for predicate the created _.matches style callback returns true for elements that + * have the properties of the given object, else false. + * + * @param collection The collection to search. + * @param predicate The function invoked per iteration. + * @param thisArg The this binding of predicate. + * @return Returns the matched element, else undefined. + */ + find( + collection: List, + predicate?: ListIterator + ): T; + + /** + * @see _.find + */ + find( + collection: Dictionary, + predicate?: DictionaryIterator + ): T; + + /** + * @see _.find + */ + find( + collection: List|Dictionary, + predicate?: string + ): T; + + /** + * @see _.find + */ + find( + collection: List|Dictionary, + predicate?: TObject + ): T; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.find + */ + find( + predicate?: ListIterator + ): T; + + /** + * @see _.find + */ + find( + predicate?: string + ): T; + + /** + * @see _.find + */ + find( + predicate?: TObject + ): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.find + */ + find( + predicate?: ListIterator|DictionaryIterator + ): TResult; + + /** + * @see _.find + */ + find( + predicate?: string + ): TResult; + + /** + * @see _.find + */ + find( + predicate?: TObject + ): TResult; + } + + //_.findLast + interface LoDashStatic { + /** + * This method is like _.find except that it iterates over elements of a collection from + * right to left. + * @param collection Searches for a value in this list. + * @param callback The function called per iteration. + * @param thisArg The this binding of callback. + * @return The found element, else undefined. + **/ + findLast( + collection: Array, + callback: ListIterator): T; + + /** + * @see _.find + **/ + findLast( + collection: List, + callback: ListIterator): T; + + /** + * @see _.find + **/ + findLast( + collection: Dictionary, + callback: DictionaryIterator): T; + + /** + * @see _.find + * @param _.pluck style callback + **/ + findLast( + collection: Array, + whereValue: W): T; + + /** + * @see _.find + * @param _.pluck style callback + **/ + findLast( + collection: List, + whereValue: W): T; + + /** + * @see _.find + * @param _.pluck style callback + **/ + findLast( + collection: Dictionary, + whereValue: W): T; + + /** + * @see _.find + * @param _.where style callback + **/ + findLast( + collection: Array, + pluckValue: string): T; + + /** + * @see _.find + * @param _.where style callback + **/ + findLast( + collection: List, + pluckValue: string): T; + + /** + * @see _.find + * @param _.where style callback + **/ + findLast( + collection: Dictionary, + pluckValue: string): T; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.findLast + */ + findLast( + callback: ListIterator): T; + /** + * @see _.findLast + * @param _.where style callback + */ + findLast( + whereValue: W): T; + + /** + * @see _.findLast + * @param _.where style callback + */ + findLast( + pluckValue: string): T; + } + + //_.flatMap + interface LoDashStatic { + /** + * Creates an array of flattened values by running each element in collection through iteratee + * and concating its result to the other mapped values. The iteratee is invoked with three arguments: + * (value, index|key, collection). + * + * @param collection The collection to iterate over. + * @param iteratee The function invoked per iteration. + * @return Returns the new flattened array. + */ + flatMap( + collection: List, + iteratee?: ListIterator + ): TResult[]; + + /** + * @see _.flatMap + */ + flatMap( + collection: List, + iteratee?: ListIterator + ): TResult[]; + + /** + * @see _.flatMap + */ + flatMap( + collection: Dictionary, + iteratee?: DictionaryIterator + ): TResult[]; + + /** + * @see _.flatMap + */ + flatMap( + collection: Dictionary, + iteratee?: DictionaryIterator + ): TResult[]; + + /** + * @see _.flatMap + */ + flatMap( + collection: NumericDictionary, + iteratee?: NumericDictionaryIterator + ): TResult[]; + + /** + * @see _.flatMap + */ + flatMap( + collection: NumericDictionary, + iteratee?: NumericDictionaryIterator + ): TResult[]; + + /** + * @see _.flatMap + */ + flatMap( + collection: TObject, + iteratee?: ObjectIterator + ): TResult[]; + + /** + * @see _.flatMap + */ + flatMap( + collection: Object, + iteratee?: ObjectIterator + ): TResult[]; + + /** + * @see _.flatMap + */ + flatMap( + collection: TObject, + iteratee: TWhere + ): boolean[]; + + /** + * @see _.flatMap + */ + flatMap( + collection: TObject, + iteratee: Object|string + ): TResult[]; + + /** + * @see _.flatMap + */ + flatMap( + collection: TObject, + iteratee: [string, any] + ): boolean[]; + + /** + * @see _.flatMap + */ + flatMap( + collection: string + ): string[]; + + /** + * @see _.flatMap + */ + flatMap( + collection: Object, + iteratee?: Object|string + ): TResult[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.flatMap + */ + flatMap( + iteratee: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.flatMap + */ + flatMap( + iteratee: ListIterator|string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap( + iteratee: TWhere + ): LoDashImplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap( + iteratee: [string, any] + ): LoDashImplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.flatMap + */ + flatMap( + iteratee: ListIterator|DictionaryIterator|NumericDictionaryIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap( + iteratee: ObjectIterator|string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap( + iteratee: TWhere + ): LoDashImplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap( + iteratee: [string, any] + ): LoDashImplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.flatMap + */ + flatMap( + iteratee: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.flatMap + */ + flatMap( + iteratee: ListIterator|string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap( + iteratee: TWhere + ): LoDashExplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap( + iteratee: [string, any] + ): LoDashExplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.flatMap + */ + flatMap( + iteratee: ListIterator|DictionaryIterator|NumericDictionaryIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap( + iteratee: ObjectIterator|string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap( + iteratee: TWhere + ): LoDashExplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap( + iteratee: [string, any] + ): LoDashExplicitArrayWrapper; + + /** + * @see _.flatMap + */ + flatMap(): LoDashExplicitArrayWrapper; + } + + //_.forEach + interface LoDashStatic { + /** + * Iterates over elements of collection invoking iteratee for each element. The iteratee is bound to thisArg + * and invoked with three arguments: + * (value, index|key, collection). Iteratee functions may exit iteration early by explicitly returning false. + * + * Note: As with other "Collections" methods, objects with a "length" property are iterated like arrays. To + * avoid this behavior _.forIn or _.forOwn may be used for object iteration. + * + * @alias _.each + * + * @param collection The collection to iterate over. + * @param iteratee The function invoked per iteration. + * @param thisArg The this binding of iteratee. + */ + forEach( + collection: T[], + iteratee?: ListIterator + ): T[]; + + /** + * @see _.forEach + */ + forEach( + collection: List, + iteratee?: ListIterator + ): List; + + /** + * @see _.forEach + */ + forEach( + collection: Dictionary, + iteratee?: DictionaryIterator + ): Dictionary; + + /** + * @see _.forEach + */ + forEach( + collection: T, + iteratee?: ObjectIterator + ): T; + + /** + * @see _.forEach + */ + forEach( + collection: T, + iteratee?: ObjectIterator + ): T; + } + + interface LoDashImplicitWrapper { + /** + * @see _.forEach + */ + forEach( + iteratee: ListIterator + ): LoDashImplicitWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.forEach + */ + forEach( + iteratee: ListIterator + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.forEach + */ + forEach( + iteratee?: ListIterator|DictionaryIterator + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.forEach + */ + forEach( + iteratee: ListIterator + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.forEach + */ + forEach( + iteratee: ListIterator + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.forEach + */ + forEach( + iteratee?: ListIterator|DictionaryIterator + ): LoDashExplicitObjectWrapper; + } + + //_.forEachRight + interface LoDashStatic { + /** + * This method is like _.forEach except that it iterates over elements of collection from right to left. + * + * @alias _.eachRight + * + * @param collection The collection to iterate over. + * @param iteratee The function called per iteration. + * @param thisArg The this binding of callback. + */ + forEachRight( + collection: T[], + iteratee?: ListIterator + ): T[]; + + /** + * @see _.forEachRight + */ + forEachRight( + collection: List, + iteratee?: ListIterator + ): List; + + /** + * @see _.forEachRight + */ + forEachRight( + collection: Dictionary, + iteratee?: DictionaryIterator + ): Dictionary; + + /** + * @see _.forEachRight + */ + forEachRight( + collection: T, + iteratee?: ObjectIterator + ): T; + + /** + * @see _.forEachRight + */ + forEachRight( + collection: T, + iteratee?: ObjectIterator + ): T; + } + + interface LoDashImplicitWrapper { + /** + * @see _.forEachRight + */ + forEachRight( + iteratee: ListIterator + ): LoDashImplicitWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.forEachRight + */ + forEachRight( + iteratee: ListIterator + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.forEachRight + */ + forEachRight( + iteratee?: ListIterator|DictionaryIterator + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.forEachRight + */ + forEachRight( + iteratee: ListIterator + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.forEachRight + */ + forEachRight( + iteratee: ListIterator + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.forEachRight + */ + forEachRight( + iteratee?: ListIterator|DictionaryIterator + ): LoDashExplicitObjectWrapper; + } + + //_.groupBy + interface LoDashStatic { + /** + * Creates an object composed of keys generated from the results of running each element of collection through + * iteratee. The corresponding value of each key is an array of the elements responsible for generating the + * key. The iteratee is bound to thisArg and invoked with three arguments: + * (value, index|key, collection). + * + * If a property name is provided for iteratee the created _.property style callback returns the property + * value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for iteratee the created _.matches style callback returns true for elements that + * have the properties of the given object, else false. + * + * @param collection The collection to iterate over. + * @param iteratee The function invoked per iteration. + * @param thisArg The this binding of iteratee. + * @return Returns the composed aggregate object. + */ + groupBy( + collection: List, + iteratee?: ListIterator + ): Dictionary; + + /** + * @see _.groupBy + */ + groupBy( + collection: List, + iteratee?: ListIterator + ): Dictionary; + + /** + * @see _.groupBy + */ + groupBy( + collection: Dictionary, + iteratee?: DictionaryIterator + ): Dictionary; + + /** + * @see _.groupBy + */ + groupBy( + collection: Dictionary, + iteratee?: DictionaryIterator + ): Dictionary; + + /** + * @see _.groupBy + */ + groupBy( + collection: List|Dictionary, + iteratee?: string + ): Dictionary; + + /** + * @see _.groupBy + */ + groupBy( + collection: List|Dictionary, + iteratee?: string + ): Dictionary; + + /** + * @see _.groupBy + */ + groupBy( + collection: List|Dictionary, + iteratee?: TWhere + ): Dictionary; + + /** + * @see _.groupBy + */ + groupBy( + collection: List|Dictionary, + iteratee?: Object + ): Dictionary; + } + + interface LoDashImplicitWrapper { + /** + * @see _.groupBy + */ + groupBy( + iteratee?: ListIterator + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.groupBy + */ + groupBy( + iteratee?: ListIterator + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.groupBy + */ + groupBy( + iteratee?: string + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.groupBy + */ + groupBy( + iteratee?: TWhere + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.groupBy + */ + groupBy( + iteratee?: ListIterator|DictionaryIterator + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.groupBy + */ + groupBy( + iteratee?: ListIterator|DictionaryIterator + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.groupBy + */ + groupBy( + iteratee?: string + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.groupBy + */ + groupBy( + iteratee?: string + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.groupBy + */ + groupBy( + iteratee?: TWhere + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.groupBy + */ + groupBy( + iteratee?: Object + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashExplicitWrapper { + /** + * @see _.groupBy + */ + groupBy( + iteratee?: ListIterator + ): LoDashExplicitObjectWrapper>; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.groupBy + */ + groupBy( + iteratee?: ListIterator + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.groupBy + */ + groupBy( + iteratee?: string + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.groupBy + */ + groupBy( + iteratee?: TWhere + ): LoDashExplicitObjectWrapper>; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.groupBy + */ + groupBy( + iteratee?: ListIterator|DictionaryIterator + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.groupBy + */ + groupBy( + iteratee?: ListIterator|DictionaryIterator + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.groupBy + */ + groupBy( + iteratee?: string + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.groupBy + */ + groupBy( + iteratee?: string + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.groupBy + */ + groupBy( + iteratee?: TWhere + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.groupBy + */ + groupBy( + iteratee?: Object + ): LoDashExplicitObjectWrapper>; + } + + //_.includes + interface LoDashStatic { + /** + * Checks if target is in collection using SameValueZero for equality comparisons. If fromIndex is negative, + * it’s used as the offset from the end of collection. + * + * @param collection The collection to search. + * @param target The value to search for. + * @param fromIndex The index to search from. + * @return True if the target element is found, else false. + */ + includes( + collection: List|Dictionary, + target: T, + fromIndex?: number + ): boolean; + + /** + * @see _.includes + */ + includes( + collection: string, + target: string, + fromIndex?: number + ): boolean; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.includes + */ + includes( + target: T, + fromIndex?: number + ): boolean; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.includes + */ + includes( + target: TValue, + fromIndex?: number + ): boolean; + } + + interface LoDashImplicitWrapper { + /** + * @see _.includes + */ + includes( + target: string, + fromIndex?: number + ): boolean; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.includes + */ + includes( + target: T, + fromIndex?: number + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.includes + */ + includes( + target: TValue, + fromIndex?: number + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.includes + */ + includes( + target: string, + fromIndex?: number + ): LoDashExplicitWrapper; + } + + //_.keyBy + interface LoDashStatic { + /** + * Creates an object composed of keys generated from the results of running each element of collection through + * iteratee. The corresponding value of each key is the last element responsible for generating the key. The + * iteratee function is bound to thisArg and invoked with three arguments: + * (value, index|key, collection). + * + * If a property name is provided for iteratee the created _.property style callback returns the property + * value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for iteratee the created _.matches style callback returns true for elements that + * have the properties of the given object, else false. + * + * @param collection The collection to iterate over. + * @param iteratee The function invoked per iteration. + * @param thisArg The this binding of iteratee. + * @return Returns the composed aggregate object. + */ + keyBy( + collection: List, + iteratee?: ListIterator + ): Dictionary; + + /** + * @see _.keyBy + */ + keyBy( + collection: NumericDictionary, + iteratee?: NumericDictionaryIterator + ): Dictionary; + + /** + * @see _.keyBy + */ + keyBy( + collection: Dictionary, + iteratee?: DictionaryIterator + ): Dictionary; + + /** + * @see _.keyBy + */ + keyBy( + collection: List|NumericDictionary|Dictionary, + iteratee?: string + ): Dictionary; + + /** + * @see _.keyBy + */ + keyBy( + collection: List|NumericDictionary|Dictionary, + iteratee?: W + ): Dictionary; + + /** + * @see _.keyBy + */ + keyBy( + collection: List|NumericDictionary|Dictionary, + iteratee?: Object + ): Dictionary; + } + + interface LoDashImplicitWrapper { + /** + * @see _.keyBy + */ + keyBy( + iteratee?: ListIterator + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.keyBy + */ + keyBy( + iteratee?: ListIterator + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.keyBy + */ + keyBy( + iteratee?: string + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.keyBy + */ + keyBy( + iteratee?: W + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.keyBy + */ + keyBy( + iteratee?: ListIterator|NumericDictionaryIterator|DictionaryIterator + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.keyBy + */ + keyBy( + iteratee?: string + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.keyBy + */ + keyBy( + iteratee?: W + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.keyBy + */ + keyBy( + iteratee?: Object + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashExplicitWrapper { + /** + * @see _.keyBy + */ + keyBy( + iteratee?: ListIterator + ): LoDashExplicitObjectWrapper>; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.keyBy + */ + keyBy( + iteratee?: ListIterator + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.keyBy + */ + keyBy( + iteratee?: string + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.keyBy + */ + keyBy( + iteratee?: W + ): LoDashExplicitObjectWrapper>; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.keyBy + */ + keyBy( + iteratee?: ListIterator|NumericDictionaryIterator|DictionaryIterator + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.keyBy + */ + keyBy( + iteratee?: string + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.keyBy + */ + keyBy( + iteratee?: W + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.keyBy + */ + keyBy( + iteratee?: Object + ): LoDashExplicitObjectWrapper>; + } + + //_.invoke + interface LoDashStatic { + /** + * Invokes the method at path of object. + * @param object The object to query. + * @param path The path of the method to invoke. + * @param args The arguments to invoke the method with. + **/ + invoke( + object: TObject, + path: StringRepresentable|StringRepresentable[], + ...args: any[]): TResult; + + /** + * @see _.invoke + **/ + invoke( + object: Dictionary|TValue[], + path: StringRepresentable|StringRepresentable[], + ...args: any[]): TResult; + + /** + * @see _.invoke + **/ + invoke( + object: any, + path: StringRepresentable|StringRepresentable[], + ...args: any[]): TResult; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.invoke + **/ + invoke( + path: StringRepresentable|StringRepresentable[], + ...args: any[]): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.invoke + **/ + invoke( + path: StringRepresentable|StringRepresentable[], + ...args: any[]): TResult; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.invoke + **/ + invoke( + path: StringRepresentable|StringRepresentable[], + ...args: any[]): TResult; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.invoke + **/ + invoke( + path: StringRepresentable|StringRepresentable[], + ...args: any[]): TResult; + } + + //_.invokeMap + interface LoDashStatic { + /** + * Invokes the method named by methodName on each element in the collection returning + * an array of the results of each invoked method. Additional arguments will be provided + * to each invoked method. If methodName is a function it will be invoked for, and this + * bound to, each element in the collection. + * @param collection The collection to iterate over. + * @param methodName The name of the method to invoke. + * @param args Arguments to invoke the method with. + **/ + invokeMap( + collection: TValue[], + methodName: string, + ...args: any[]): TResult[]; + + /** + * @see _.invokeMap + **/ + invokeMap( + collection: Dictionary, + methodName: string, + ...args: any[]): TResult[]; + + /** + * @see _.invokeMap + **/ + invokeMap( + collection: {}[], + methodName: string, + ...args: any[]): TResult[]; + + /** + * @see _.invokeMap + **/ + invokeMap( + collection: Dictionary<{}>, + methodName: string, + ...args: any[]): TResult[]; + + /** + * @see _.invokeMap + **/ + invokeMap( + collection: TValue[], + method: (...args: any[]) => TResult, + ...args: any[]): TResult[]; + + /** + * @see _.invokeMap + **/ + invokeMap( + collection: Dictionary, + method: (...args: any[]) => TResult, + ...args: any[]): TResult[]; + + /** + * @see _.invokeMap + **/ + invokeMap( + collection: {}[], + method: (...args: any[]) => TResult, + ...args: any[]): TResult[]; + + /** + * @see _.invokeMap + **/ + invokeMap( + collection: Dictionary<{}>, + method: (...args: any[]) => TResult, + ...args: any[]): TResult[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.invokeMap + **/ + invokeMap( + methodName: string, + ...args: any[]): LoDashImplicitArrayWrapper; + + /** + * @see _.invokeMap + **/ + invokeMap( + method: (...args: any[]) => TResult, + ...args: any[]): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.invokeMap + **/ + invokeMap( + methodName: string, + ...args: any[]): LoDashImplicitArrayWrapper; + + /** + * @see _.invokeMap + **/ + invokeMap( + method: (...args: any[]) => TResult, + ...args: any[]): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.invokeMap + **/ + invokeMap( + methodName: string, + ...args: any[]): LoDashExplicitArrayWrapper; + + /** + * @see _.invokeMap + **/ + invokeMap( + method: (...args: any[]) => TResult, + ...args: any[]): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.invokeMap + **/ + invokeMap( + methodName: string, + ...args: any[]): LoDashExplicitArrayWrapper; + + /** + * @see _.invokeMap + **/ + invokeMap( + method: (...args: any[]) => TResult, + ...args: any[]): LoDashExplicitArrayWrapper; + } + + //_.map + interface LoDashStatic { + /** + * Creates an array of values by running each element in collection through iteratee. The iteratee is bound to + * thisArg and invoked with three arguments: (value, index|key, collection). + * + * If a property name is provided for iteratee the created _.property style callback returns the property value + * of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for iteratee the created _.matches style callback returns true for elements that + * have the properties of the given object, else false. + * + * Many lodash methods are guarded to work as iteratees for methods like _.every, _.filter, _.map, _.mapValues, + * _.reject, and _.some. + * + * The guarded methods are: + * ary, callback, chunk, clone, create, curry, curryRight, drop, dropRight, every, fill, flatten, invert, max, + * min, parseInt, slice, sortBy, take, takeRight, template, trim, trimLeft, trimRight, trunc, random, range, + * sample, some, sum, uniq, and words + * + * @param collection The collection to iterate over. + * @param iteratee The function invoked per iteration. + * @param thisArg The this binding of iteratee. + * @return Returns the new mapped array. + */ + map( + collection: List, + iteratee?: ListIterator + ): TResult[]; + + /** + * @see _.map + */ + map( + collection: Dictionary, + iteratee?: DictionaryIterator + ): TResult[]; + + map( + collection: NumericDictionary, + iteratee?: NumericDictionaryIterator + ): TResult[]; + + /** + * @see _.map + */ + map( + collection: List|Dictionary|NumericDictionary, + iteratee?: string + ): TResult[]; + + /** + * @see _.map + */ + map( + collection: List|Dictionary|NumericDictionary, + iteratee?: TObject + ): boolean[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.map + */ + map( + iteratee?: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.map + */ + map( + iteratee?: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.map + */ + map( + iteratee?: TObject + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.map + */ + map( + iteratee?: ListIterator|DictionaryIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.map + */ + map( + iteratee?: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.map + */ + map( + iteratee?: TObject + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.map + */ + map( + iteratee?: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.map + */ + map( + iteratee?: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.map + */ + map( + iteratee?: TObject + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.map + */ + map( + iteratee?: ListIterator|DictionaryIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.map + */ + map( + iteratee?: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.map + */ + map( + iteratee?: TObject + ): LoDashExplicitArrayWrapper; + } + + //_.partition + interface LoDashStatic { + /** + * Creates an array of elements split into two groups, the first of which contains elements predicate returns truthy for, + * while the second of which contains elements predicate returns falsey for. + * The predicate is bound to thisArg and invoked with three arguments: (value, index|key, collection). + * + * If a property name is provided for predicate the created _.property style callback + * returns the property value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback + * returns true for elements that have a matching property value, else false. + * + * If an object is provided for predicate the created _.matches style callback returns + * true for elements that have the properties of the given object, else false. + * + * @param collection The collection to iterate over. + * @param callback The function called per iteration. + * @param thisArg The this binding of predicate. + * @return Returns the array of grouped elements. + **/ + partition( + collection: List, + callback: ListIterator): T[][]; + + /** + * @see _.partition + **/ + partition( + collection: Dictionary, + callback: DictionaryIterator): T[][]; + + /** + * @see _.partition + **/ + partition( + collection: List, + whereValue: W): T[][]; + + /** + * @see _.partition + **/ + partition( + collection: Dictionary, + whereValue: W): T[][]; + + /** + * @see _.partition + **/ + partition( + collection: List, + path: string, + srcValue: any): T[][]; + + /** + * @see _.partition + **/ + partition( + collection: Dictionary, + path: string, + srcValue: any): T[][]; + + /** + * @see _.partition + **/ + partition( + collection: List, + pluckValue: string): T[][]; + + /** + * @see _.partition + **/ + partition( + collection: Dictionary, + pluckValue: string): T[][]; + } + + interface LoDashImplicitStringWrapper { + /** + * @see _.partition + */ + partition( + callback: ListIterator): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.partition + */ + partition( + callback: ListIterator): LoDashImplicitArrayWrapper; + /** + * @see _.partition + */ + partition( + whereValue: W): LoDashImplicitArrayWrapper; + /** + * @see _.partition + */ + partition( + path: string, + srcValue: any): LoDashImplicitArrayWrapper; + /** + * @see _.partition + */ + partition( + pluckValue: string): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.partition + */ + partition( + callback: ListIterator): LoDashImplicitArrayWrapper; + + /** + * @see _.partition + */ + partition( + callback: DictionaryIterator): LoDashImplicitArrayWrapper; + + /** + * @see _.partition + */ + partition( + whereValue: W): LoDashImplicitArrayWrapper; + + /** + * @see _.partition + */ + partition( + path: string, + srcValue: any): LoDashImplicitArrayWrapper; + + /** + * @see _.partition + */ + partition( + pluckValue: string): LoDashImplicitArrayWrapper; + } + + //_.reduce + interface LoDashStatic { + /** + * Reduces a collection to a value which is the accumulated result of running each + * element in the collection through the callback, where each successive callback execution + * consumes the return value of the previous execution. If accumulator is not provided the + * first element of the collection will be used as the initial accumulator value. The callback + * is bound to thisArg and invoked with four arguments; (accumulator, value, index|key, collection). + * @param collection The collection to iterate over. + * @param callback The function called per iteration. + * @param accumulator Initial value of the accumulator. + * @param thisArg The this binding of callback. + * @return Returns the accumulated value. + **/ + reduce( + collection: Array, + callback: MemoIterator, + accumulator: TResult): TResult; + + /** + * @see _.reduce + **/ + reduce( + collection: List, + callback: MemoIterator, + accumulator: TResult): TResult; + + /** + * @see _.reduce + **/ + reduce( + collection: Dictionary, + callback: MemoIterator, + accumulator: TResult): TResult; + + /** + * @see _.reduce + **/ + reduce( + collection: NumericDictionary, + callback: MemoIterator, + accumulator: TResult): TResult; + + /** + * @see _.reduce + **/ + reduce( + collection: Array, + callback: MemoIterator): TResult; + + /** + * @see _.reduce + **/ + reduce( + collection: List, + callback: MemoIterator): TResult; + + /** + * @see _.reduce + **/ + reduce( + collection: Dictionary, + callback: MemoIterator): TResult; + + /** + * @see _.reduce + **/ + reduce( + collection: NumericDictionary, + callback: MemoIterator): TResult; + + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.reduce + **/ + reduce( + callback: MemoIterator, + accumulator: TResult): TResult; + + /** + * @see _.reduce + **/ + reduce( + callback: MemoIterator): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.reduce + **/ + reduce( + callback: MemoIterator, + accumulator: TResult): TResult; + + /** + * @see _.reduce + **/ + reduce( + callback: MemoIterator): TResult; + } + + //_.reduceRight + interface LoDashStatic { + /** + * This method is like _.reduce except that it iterates over elements of a collection from + * right to left. + * @param collection The collection to iterate over. + * @param callback The function called per iteration. + * @param accumulator Initial value of the accumulator. + * @param thisArg The this binding of callback. + * @return The accumulated value. + **/ + reduceRight( + collection: Array, + callback: MemoIterator, + accumulator: TResult): TResult; + + /** + * @see _.reduceRight + **/ + reduceRight( + collection: List, + callback: MemoIterator, + accumulator: TResult): TResult; + + /** + * @see _.reduceRight + **/ + reduceRight( + collection: Dictionary, + callback: MemoIterator, + accumulator: TResult): TResult; + + /** + * @see _.reduceRight + **/ + reduceRight( + collection: Array, + callback: MemoIterator): TResult; + + /** + * @see _.reduceRight + **/ + reduceRight( + collection: List, + callback: MemoIterator): TResult; + + /** + * @see _.reduceRight + **/ + reduceRight( + collection: Dictionary, + callback: MemoIterator): TResult; + } + + //_.reject + interface LoDashStatic { + /** + * The opposite of _.filter; this method returns the elements of collection that predicate does not return + * truthy for. + * + * @param collection The collection to iterate over. + * @param predicate The function invoked per iteration. + * @param thisArg The this binding of predicate. + * @return Returns the new filtered array. + */ + reject( + collection: List, + predicate?: ListIterator + ): T[]; + + /** + * @see _.reject + */ + reject( + collection: Dictionary, + predicate?: DictionaryIterator + ): T[]; + + /** + * @see _.reject + */ + reject( + collection: string, + predicate?: StringIterator + ): string[]; + + /** + * @see _.reject + */ + reject( + collection: List|Dictionary, + predicate: string + ): T[]; + + /** + * @see _.reject + */ + reject( + collection: List|Dictionary, + predicate: W + ): T[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.reject + */ + reject( + predicate?: StringIterator + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.reject + */ + reject( + predicate: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.reject + */ + reject( + predicate: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.reject + */ + reject(predicate: W): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.reject + */ + reject( + predicate: ListIterator|DictionaryIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.reject + */ + reject( + predicate: string + ): LoDashImplicitArrayWrapper; + + /** + * @see _.reject + */ + reject(predicate: W): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.reject + */ + reject( + predicate?: StringIterator + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.reject + */ + reject( + predicate: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.reject + */ + reject( + predicate: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.reject + */ + reject(predicate: W): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.reject + */ + reject( + predicate: ListIterator|DictionaryIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.reject + */ + reject( + predicate: string + ): LoDashExplicitArrayWrapper; + + /** + * @see _.reject + */ + reject(predicate: W): LoDashExplicitArrayWrapper; + } + + //_.sample + interface LoDashStatic { + /** + * Gets a random element from collection. + * + * @param collection The collection to sample. + * @return Returns the random element. + */ + sample( + collection: List|Dictionary|NumericDictionary + ): T; + + /** + * @see _.sample + */ + sample( + collection: O + ): T; + + /** + * @see _.sample + */ + sample( + collection: Object + ): T; + } + + interface LoDashImplicitWrapper { + /** + * @see _.sample + */ + sample(): string; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.sample + */ + sample(): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.sample + */ + sample(): T; + } + + interface LoDashExplicitWrapper { + /** + * @see _.sample + */ + sample(): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.sample + */ + sample(): TWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.sample + */ + sample(): TWrapper; + } + + //_.sampleSize + interface LoDashStatic { + /** + * Gets n random elements at unique keys from collection up to the size of collection. + * + * @param collection The collection to sample. + * @param n The number of elements to sample. + * @return Returns the random elements. + */ + sampleSize( + collection: List|Dictionary|NumericDictionary, + n?: number + ): T[]; + + /** + * @see _.sampleSize + */ + sampleSize( + collection: O, + n?: number + ): T[]; + + /** + * @see _.sampleSize + */ + sampleSize( + collection: Object, + n?: number + ): T[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.sampleSize + */ + sampleSize( + n?: number + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.sampleSize + */ + sampleSize( + n?: number + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.sampleSize + */ + sampleSize( + n?: number + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.sampleSize + */ + sampleSize( + n?: number + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.sampleSize + */ + sampleSize( + n?: number + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.sampleSize + */ + sampleSize( + n?: number + ): LoDashExplicitArrayWrapper; + } + + //_.shuffle + interface LoDashStatic { + /** + * Creates an array of shuffled values, using a version of the Fisher-Yates shuffle. + * + * @param collection The collection to shuffle. + * @return Returns the new shuffled array. + */ + shuffle(collection: List|Dictionary): T[]; + + /** + * @see _.shuffle + */ + shuffle(collection: string): string[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.shuffle + */ + shuffle(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.shuffle + */ + shuffle(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.shuffle + */ + shuffle(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.shuffle + */ + shuffle(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.shuffle + */ + shuffle(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.shuffle + */ + shuffle(): LoDashExplicitArrayWrapper; + } + + //_.size + interface LoDashStatic { + /** + * Gets the size of collection by returning its length for array-like values or the number of own enumerable + * properties for objects. + * + * @param collection The collection to inspect. + * @return Returns the size of collection. + */ + size(collection: List|Dictionary): number; + + /** + * @see _.size + */ + size(collection: string): number; + } + + interface LoDashImplicitWrapper { + /** + * @see _.size + */ + size(): number; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.size + */ + size(): number; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.size + */ + size(): number; + } + + interface LoDashExplicitWrapper { + /** + * @see _.size + */ + size(): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.size + */ + size(): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.size + */ + size(): LoDashExplicitWrapper; + } + + //_.some + interface LoDashStatic { + /** + * Checks if predicate returns truthy for any element of collection. Iteration is stopped once predicate + * returns truthy. The predicate is invoked with three arguments: (value, index|key, collection). + * + * @param collection The collection to iterate over. + * @param predicate The function invoked per iteration. + * @return Returns true if any element passes the predicate check, else false. + */ + some( + collection: List, + predicate?: ListIterator + ): boolean; + + /** + * @see _.some + */ + some( + collection: Dictionary, + predicate?: DictionaryIterator + ): boolean; + + /** + * @see _.some + */ + some( + collection: NumericDictionary, + predicate?: NumericDictionaryIterator + ): boolean; + + /** + * @see _.some + */ + some( + collection: Object, + predicate?: ObjectIterator + ): boolean; + + /** + * @see _.some + */ + some( + collection: List|Dictionary|NumericDictionary, + predicate?: string|[string, any] + ): boolean; + + + /** + * @see _.some + */ + some( + collection: Object, + predicate?: string|[string, any] + ): boolean; + + /** + * @see _.some + */ + some( + collection: List|Dictionary|NumericDictionary, + predicate?: TObject + ): boolean; + + /** + * @see _.some + */ + some( + collection: List|Dictionary|NumericDictionary, + predicate?: Object + ): boolean; + + /** + * @see _.some + */ + some( + collection: Object, + predicate?: TObject + ): boolean; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.some + */ + some( + predicate?: ListIterator|NumericDictionaryIterator + ): boolean; + + /** + * @see _.some + */ + some( + predicate?: string|[string, any] + ): boolean; + + /** + * @see _.some + */ + some( + predicate?: TObject + ): boolean; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.some + */ + some( + predicate?: ListIterator|DictionaryIterator|NumericDictionaryIterator|ObjectIterator + ): boolean; + + /** + * @see _.some + */ + some( + predicate?: string|[string, any] + ): boolean; + + /** + * @see _.some + */ + some( + predicate?: TObject + ): boolean; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.some + */ + some( + predicate?: ListIterator|NumericDictionaryIterator + ): LoDashExplicitWrapper; + + /** + * @see _.some + */ + some( + predicate?: string|[string, any] + ): LoDashExplicitWrapper; + + /** + * @see _.some + */ + some( + predicate?: TObject + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.some + */ + some( + predicate?: ListIterator|DictionaryIterator|NumericDictionaryIterator|ObjectIterator + ): LoDashExplicitWrapper; + + /** + * @see _.some + */ + some( + predicate?: string|[string, any] + ): LoDashExplicitWrapper; + + /** + * @see _.some + */ + some( + predicate?: TObject + ): LoDashExplicitWrapper; + } + + //_.sortBy + interface LoDashStatic { + /** + * Creates an array of elements, sorted in ascending order by the results of + * running each element in a collection through each iteratee. This method + * performs a stable sort, that is, it preserves the original sort order of + * equal elements. The iteratees are invoked with one argument: (value). + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {...(Function|Function[]|Object|Object[]|string|string[])} [iteratees=[_.identity]] + * The iteratees to sort by, specified individually or in arrays. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 42 }, + * { 'user': 'barney', 'age': 34 } + * ]; + * + * _.sortBy(users, function(o) { return o.user; }); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 42]] + * + * _.sortBy(users, ['user', 'age']); + * // => objects for [['barney', 34], ['barney', 36], ['fred', 42], ['fred', 48]] + * + * _.sortBy(users, 'user', function(o) { + * return Math.floor(o.age / 10); + * }); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 42]] + */ + sortBy( + collection: List, + iteratee?: ListIterator + ): T[]; + + /** + * @see _.sortBy + */ + sortBy( + collection: Dictionary, + iteratee?: DictionaryIterator + ): T[]; + + /** + * @see _.sortBy + */ + sortBy( + collection: List|Dictionary, + iteratee: string + ): T[]; + + /** + * @see _.sortBy + */ + sortBy( + collection: List|Dictionary, + whereValue: W + ): T[]; + + /** + * @see _.sortBy + */ + sortBy( + collection: List|Dictionary + ): T[]; + + /** + * @see _.sortBy + */ + sortBy( + collection: (Array|List), + iteratees: (ListIterator|string|Object)[]): T[]; + + /** + * @see _.sortBy + */ + sortBy( + collection: (Array|List), + ...iteratees: (ListIterator|Object|string)[]): T[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.sortBy + */ + sortBy( + iteratee?: ListIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.sortBy + */ + sortBy(iteratee: string): LoDashImplicitArrayWrapper; + + /** + * @see _.sortBy + */ + sortBy(whereValue: W): LoDashImplicitArrayWrapper; + + /** + * @see _.sortBy + */ + sortBy(): LoDashImplicitArrayWrapper; + + /** + * @see _.sortBy + */ + sortBy(...iteratees: (ListIterator|Object|string)[]): LoDashImplicitArrayWrapper; + + /** + * @see _.sortBy + **/ + sortBy(iteratees: (ListIterator|string|Object)[]): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.sortBy + */ + sortBy( + iteratee?: ListIterator|DictionaryIterator + ): LoDashImplicitArrayWrapper; + + /** + * @see _.sortBy + */ + sortBy(iteratee: string): LoDashImplicitArrayWrapper; + + /** + * @see _.sortBy + */ + sortBy(whereValue: W): LoDashImplicitArrayWrapper; + + /** + * @see _.sortBy + */ + sortBy(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.sortBy + */ + sortBy( + iteratee?: ListIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.sortBy + */ + sortBy(iteratee: string): LoDashExplicitArrayWrapper; + + /** + * @see _.sortBy + */ + sortBy(whereValue: W): LoDashExplicitArrayWrapper; + + /** + * @see _.sortBy + */ + sortBy(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.sortBy + */ + sortBy( + iteratee?: ListIterator|DictionaryIterator + ): LoDashExplicitArrayWrapper; + + /** + * @see _.sortBy + */ + sortBy(iteratee: string): LoDashExplicitArrayWrapper; + + /** + * @see _.sortBy + */ + sortBy(whereValue: W): LoDashExplicitArrayWrapper; + + /** + * @see _.sortBy + */ + sortBy(): LoDashExplicitArrayWrapper; + } + + //_.orderBy + interface LoDashStatic { + /** + * This method is like `_.sortBy` except that it allows specifying the sort + * orders of the iteratees to sort by. If `orders` is unspecified, all values + * are sorted in ascending order. Otherwise, specify an order of "desc" for + * descending or "asc" for ascending sort order of corresponding values. + * + * @static + * @memberOf _ + * @category Collection + * @param {Array|Object} collection The collection to iterate over. + * @param {Function[]|Object[]|string[]} [iteratees=[_.identity]] The iteratees to sort by. + * @param {string[]} [orders] The sort orders of `iteratees`. + * @param- {Object} [guard] Enables use as an iteratee for functions like `_.reduce`. + * @returns {Array} Returns the new sorted array. + * @example + * + * var users = [ + * { 'user': 'fred', 'age': 48 }, + * { 'user': 'barney', 'age': 34 }, + * { 'user': 'fred', 'age': 42 }, + * { 'user': 'barney', 'age': 36 } + * ]; + * + * // sort by `user` in ascending order and by `age` in descending order + * _.orderBy(users, ['user', 'age'], ['asc', 'desc']); + * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 42]] + */ + orderBy( + collection: List, + iteratees: ListIterator|string|W|(ListIterator|string|W)[], + orders?: boolean|string|(boolean|string)[] + ): T[]; + + /** + * @see _.orderBy + */ + orderBy( + collection: List, + iteratees: ListIterator|string|Object|(ListIterator|string|Object)[], + orders?: boolean|string|(boolean|string)[] + ): T[]; + + /** + * @see _.orderBy + */ + orderBy( + collection: NumericDictionary, + iteratees: NumericDictionaryIterator|string|W|(NumericDictionaryIterator|string|W)[], + orders?: boolean|string|(boolean|string)[] + ): T[]; + + /** + * @see _.orderBy + */ + orderBy( + collection: NumericDictionary, + iteratees: NumericDictionaryIterator|string|Object|(NumericDictionaryIterator|string|Object)[], + orders?: boolean|string|(boolean|string)[] + ): T[]; + + /** + * @see _.orderBy + */ + orderBy( + collection: Dictionary, + iteratees: DictionaryIterator|string|W|(DictionaryIterator|string|W)[], + orders?: boolean|string|(boolean|string)[] + ): T[]; + + /** + * @see _.orderBy + */ + orderBy( + collection: Dictionary, + iteratees: DictionaryIterator|string|Object|(DictionaryIterator|string|Object)[], + orders?: boolean|string|(boolean|string)[] + ): T[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.orderBy + */ + orderBy( + iteratees: ListIterator|string|(ListIterator|string)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.orderBy + */ + orderBy( + iteratees: ListIterator|string|W|(ListIterator|string|W)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.orderBy + */ + orderBy( + iteratees: ListIterator|string|W|(ListIterator|string|W)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashImplicitArrayWrapper; + + /** + * @see _.orderBy + */ + orderBy( + iteratees: ListIterator|string|Object|(ListIterator|string|Object)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashImplicitArrayWrapper; + + /** + * @see _.orderBy + */ + orderBy( + iteratees: NumericDictionaryIterator|string|W|(NumericDictionaryIterator|string|W)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashImplicitArrayWrapper; + + /** + * @see _.orderBy + */ + orderBy( + iteratees: NumericDictionaryIterator|string|Object|(NumericDictionaryIterator|string|Object)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashImplicitArrayWrapper; + + /** + * @see _.orderBy + */ + orderBy( + iteratees: DictionaryIterator|string|W|(DictionaryIterator|string|W)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashImplicitArrayWrapper; + + /** + * @see _.orderBy + */ + orderBy( + iteratees: DictionaryIterator|string|Object|(DictionaryIterator|string|Object)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.orderBy + */ + orderBy( + iteratees: ListIterator|string|(ListIterator|string)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.orderBy + */ + orderBy( + iteratees: ListIterator|string|W|(ListIterator|string|W)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.orderBy + */ + orderBy( + iteratees: ListIterator|string|W|(ListIterator|string|W)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashExplicitArrayWrapper; + + /** + * @see _.orderBy + */ + orderBy( + iteratees: ListIterator|string|Object|(ListIterator|string|Object)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashExplicitArrayWrapper; + + /** + * @see _.orderBy + */ + orderBy( + iteratees: NumericDictionaryIterator|string|W|(NumericDictionaryIterator|string|W)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashExplicitArrayWrapper; + + /** + * @see _.orderBy + */ + orderBy( + iteratees: NumericDictionaryIterator|string|Object|(NumericDictionaryIterator|string|Object)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashExplicitArrayWrapper; + + /** + * @see _.orderBy + */ + orderBy( + iteratees: DictionaryIterator|string|W|(DictionaryIterator|string|W)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashExplicitArrayWrapper; + + /** + * @see _.orderBy + */ + orderBy( + iteratees: DictionaryIterator|string|Object|(DictionaryIterator|string|Object)[], + orders?: boolean|string|(boolean|string)[] + ): LoDashExplicitArrayWrapper; + } + + /******** + * Date * + ********/ + + //_.now + interface LoDashStatic { + /** + * Gets the number of milliseconds that have elapsed since the Unix epoch (1 January 1970 00:00:00 UTC). + * + * @return The number of milliseconds. + */ + now(): number; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.now + */ + now(): number; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.now + */ + now(): LoDashExplicitWrapper; + } + + /************* + * Functions * + *************/ + + //_.after + interface LoDashStatic { + /** + * The opposite of _.before; this method creates a function that invokes func once it’s called n or more times. + * + * @param n The number of calls before func is invoked. + * @param func The function to restrict. + * @return Returns the new restricted function. + */ + after( + n: number, + func: TFunc + ): TFunc; + } + + interface LoDashImplicitWrapper { + /** + * @see _.after + **/ + after(func: TFunc): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.after + **/ + after(func: TFunc): LoDashExplicitObjectWrapper; + } + + //_.ary + interface LoDashStatic { + /** + * Creates a function that accepts up to n arguments ignoring any additional arguments. + * + * @param func The function to cap arguments for. + * @param n The arity cap. + * @returns Returns the new function. + */ + ary( + func: Function, + n?: number + ): TResult; + + ary( + func: T, + n?: number + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.ary + */ + ary(n?: number): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.ary + */ + ary(n?: number): LoDashExplicitObjectWrapper; + } + + //_.before + interface LoDashStatic { + /** + * Creates a function that invokes func, with the this binding and arguments of the created function, while + * it’s called less than n times. Subsequent calls to the created function return the result of the last func + * invocation. + * + * @param n The number of calls at which func is no longer invoked. + * @param func The function to restrict. + * @return Returns the new restricted function. + */ + before( + n: number, + func: TFunc + ): TFunc; + } + + interface LoDashImplicitWrapper { + /** + * @see _.before + **/ + before(func: TFunc): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.before + **/ + before(func: TFunc): LoDashExplicitObjectWrapper; + } + + //_.bind + interface FunctionBind { + placeholder: any; + + ( + func: T, + thisArg: any, + ...partials: any[] + ): TResult; + + ( + func: Function, + thisArg: any, + ...partials: any[] + ): TResult; + } + + interface LoDashStatic { + /** + * Creates a function that invokes func with the this binding of thisArg and prepends any additional _.bind + * arguments to those provided to the bound function. + * + * The _.bind.placeholder value, which defaults to _ in monolithic builds, may be used as a placeholder for + * partially applied arguments. + * + * Note: Unlike native Function#bind this method does not set the "length" property of bound functions. + * + * @param func The function to bind. + * @param thisArg The this binding of func. + * @param partials The arguments to be partially applied. + * @return Returns the new bound function. + */ + bind: FunctionBind; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.bind + */ + bind( + thisArg: any, + ...partials: any[] + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.bind + */ + bind( + thisArg: any, + ...partials: any[] + ): LoDashExplicitObjectWrapper; + } + + //_.bindAll + interface LoDashStatic { + /** + * Binds methods of an object to the object itself, overwriting the existing method. Method names may be + * specified as individual arguments or as arrays of method names. If no method names are provided all + * enumerable function properties, own and inherited, of object are bound. + * + * Note: This method does not set the "length" property of bound functions. + * + * @param object The object to bind and assign the bound methods to. + * @param methodNames The object method names to bind, specified as individual method names or arrays of + * method names. + * @return Returns object. + */ + bindAll( + object: T, + ...methodNames: (string|string[])[] + ): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.bindAll + */ + bindAll(...methodNames: (string|string[])[]): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.bindAll + */ + bindAll(...methodNames: (string|string[])[]): LoDashExplicitObjectWrapper; + } + + //_.bindKey + interface FunctionBindKey { + placeholder: any; + + ( + object: T, + key: any, + ...partials: any[] + ): TResult; + + ( + object: Object, + key: any, + ...partials: any[] + ): TResult; + } + + interface LoDashStatic { + /** + * Creates a function that invokes the method at object[key] and prepends any additional _.bindKey arguments + * to those provided to the bound function. + * + * This method differs from _.bind by allowing bound functions to reference methods that may be redefined + * or don’t yet exist. See Peter Michaux’s article for more details. + * + * The _.bindKey.placeholder value, which defaults to _ in monolithic builds, may be used as a placeholder + * for partially applied arguments. + * + * @param object The object the method belongs to. + * @param key The key of the method. + * @param partials The arguments to be partially applied. + * @return Returns the new bound function. + */ + bindKey: FunctionBindKey; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.bindKey + */ + bindKey( + key: any, + ...partials: any[] + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.bindKey + */ + bindKey( + key: any, + ...partials: any[] + ): LoDashExplicitObjectWrapper; + } + + //_.createCallback + interface LoDashStatic { + /** + * Produces a callback bound to an optional thisArg. If func is a property name the created + * callback will return the property value for a given element. If func is an object the created + * callback will return true for elements that contain the equivalent object properties, + * otherwise it will return false. + * @param func The value to convert to a callback. + * @param thisArg The this binding of the created callback. + * @param argCount The number of arguments the callback accepts. + * @return A callback function. + **/ + createCallback( + func: string, + argCount?: number): () => any; + + /** + * @see _.createCallback + **/ + createCallback( + func: Dictionary, + argCount?: number): () => boolean; + } + + interface LoDashImplicitWrapper { + /** + * @see _.createCallback + **/ + createCallback( + argCount?: number): LoDashImplicitObjectWrapper<() => any>; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.createCallback + **/ + createCallback( + argCount?: number): LoDashImplicitObjectWrapper<() => any>; + } + + //_.curry + interface LoDashStatic { + /** + * Creates a function that accepts one or more arguments of func that when called either invokes func returning + * its result, if all func arguments have been provided, or returns a function that accepts one or more of the + * remaining func arguments, and so on. The arity of func may be specified if func.length is not sufficient. + * @param func The function to curry. + * @return Returns the new curried function. + */ + curry(func: (t1: T1) => R): + CurriedFunction1; + /** + * Creates a function that accepts one or more arguments of func that when called either invokes func returning + * its result, if all func arguments have been provided, or returns a function that accepts one or more of the + * remaining func arguments, and so on. The arity of func may be specified if func.length is not sufficient. + * @param func The function to curry. + * @return Returns the new curried function. + */ + curry(func: (t1: T1, t2: T2) => R): + CurriedFunction2; + /** + * Creates a function that accepts one or more arguments of func that when called either invokes func returning + * its result, if all func arguments have been provided, or returns a function that accepts one or more of the + * remaining func arguments, and so on. The arity of func may be specified if func.length is not sufficient. + * @param func The function to curry. + * @return Returns the new curried function. + */ + curry(func: (t1: T1, t2: T2, t3: T3) => R): + CurriedFunction3; + /** + * Creates a function that accepts one or more arguments of func that when called either invokes func returning + * its result, if all func arguments have been provided, or returns a function that accepts one or more of the + * remaining func arguments, and so on. The arity of func may be specified if func.length is not sufficient. + * @param func The function to curry. + * @return Returns the new curried function. + */ + curry(func: (t1: T1, t2: T2, t3: T3, t4: T4) => R): + CurriedFunction4; + /** + * Creates a function that accepts one or more arguments of func that when called either invokes func returning + * its result, if all func arguments have been provided, or returns a function that accepts one or more of the + * remaining func arguments, and so on. The arity of func may be specified if func.length is not sufficient. + * @param func The function to curry. + * @return Returns the new curried function. + */ + curry(func: (t1: T1, t2: T2, t3: T3, t4: T4, t5: T5) => R): + CurriedFunction5; + /** + * Creates a function that accepts one or more arguments of func that when called either invokes func returning + * its result, if all func arguments have been provided, or returns a function that accepts one or more of the + * remaining func arguments, and so on. The arity of func may be specified if func.length is not sufficient. + * @param func The function to curry. + * @param arity The arity of func. + * @return Returns the new curried function. + */ + curry( + func: Function, + arity?: number): TResult; + } + + interface CurriedFunction1 { + (): CurriedFunction1; + (t1: T1): R; + } + + interface CurriedFunction2 { + (): CurriedFunction2; + (t1: T1): CurriedFunction1; + (t1: T1, t2: T2): R; + } + + interface CurriedFunction3 { + (): CurriedFunction3; + (t1: T1): CurriedFunction2; + (t1: T1, t2: T2): CurriedFunction1; + (t1: T1, t2: T2, t3: T3): R; + } + + interface CurriedFunction4 { + (): CurriedFunction4; + (t1: T1): CurriedFunction3; + (t1: T1, t2: T2): CurriedFunction2; + (t1: T1, t2: T2, t3: T3): CurriedFunction1; + (t1: T1, t2: T2, t3: T3, t4: T4): R; + } + + interface CurriedFunction5 { + (): CurriedFunction5; + (t1: T1): CurriedFunction4; + (t1: T1, t2: T2): CurriedFunction3; + (t1: T1, t2: T2, t3: T3): CurriedFunction2; + (t1: T1, t2: T2, t3: T3, t4: T4): CurriedFunction1; + (t1: T1, t2: T2, t3: T3, t4: T4, t5: T5): R; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.curry + **/ + curry(arity?: number): LoDashImplicitObjectWrapper; + } + + //_.curryRight + interface LoDashStatic { + /** + * This method is like _.curry except that arguments are applied to func in the manner of _.partialRight + * instead of _.partial. + * @param func The function to curry. + * @return Returns the new curried function. + */ + curryRight(func: (t1: T1) => R): + CurriedFunction1; + /** + * This method is like _.curry except that arguments are applied to func in the manner of _.partialRight + * instead of _.partial. + * @param func The function to curry. + * @return Returns the new curried function. + */ + curryRight(func: (t1: T1, t2: T2) => R): + CurriedFunction2; + /** + * This method is like _.curry except that arguments are applied to func in the manner of _.partialRight + * instead of _.partial. + * @param func The function to curry. + * @return Returns the new curried function. + */ + curryRight(func: (t1: T1, t2: T2, t3: T3) => R): + CurriedFunction3; + /** + * This method is like _.curry except that arguments are applied to func in the manner of _.partialRight + * instead of _.partial. + * @param func The function to curry. + * @return Returns the new curried function. + */ + curryRight(func: (t1: T1, t2: T2, t3: T3, t4: T4) => R): + CurriedFunction4; + /** + * This method is like _.curry except that arguments are applied to func in the manner of _.partialRight + * instead of _.partial. + * @param func The function to curry. + * @return Returns the new curried function. + */ + curryRight(func: (t1: T1, t2: T2, t3: T3, t4: T4, t5: T5) => R): + CurriedFunction5; + /** + * This method is like _.curry except that arguments are applied to func in the manner of _.partialRight + * instead of _.partial. + * @param func The function to curry. + * @param arity The arity of func. + * @return Returns the new curried function. + */ + curryRight( + func: Function, + arity?: number): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.curryRight + **/ + curryRight(arity?: number): LoDashImplicitObjectWrapper; + } + + //_.debounce + interface DebounceSettings { + /** + * Specify invoking on the leading edge of the timeout. + */ + leading?: boolean; + + /** + * The maximum time func is allowed to be delayed before it’s invoked. + */ + maxWait?: number; + + /** + * Specify invoking on the trailing edge of the timeout. + */ + trailing?: boolean; + } + + interface LoDashStatic { + /** + * Creates a debounced function that delays invoking func until after wait milliseconds have elapsed since + * the last time the debounced function was invoked. The debounced function comes with a cancel method to + * cancel delayed invocations. Provide an options object to indicate that func should be invoked on the + * leading and/or trailing edge of the wait timeout. Subsequent calls to the debounced function return the + * result of the last func invocation. + * + * Note: If leading and trailing options are true, func is invoked on the trailing edge of the timeout only + * if the the debounced function is invoked more than once during the wait timeout. + * + * See David Corbacho’s article for details over the differences between _.debounce and _.throttle. + * + * @param func The function to debounce. + * @param wait The number of milliseconds to delay. + * @param options The options object. + * @param options.leading Specify invoking on the leading edge of the timeout. + * @param options.maxWait The maximum time func is allowed to be delayed before it’s invoked. + * @param options.trailing Specify invoking on the trailing edge of the timeout. + * @return Returns the new debounced function. + */ + debounce( + func: T, + wait?: number, + options?: DebounceSettings + ): T & Cancelable; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.debounce + */ + debounce( + wait?: number, + options?: DebounceSettings + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.debounce + */ + debounce( + wait?: number, + options?: DebounceSettings + ): LoDashExplicitObjectWrapper; + } + + //_.defer + interface LoDashStatic { + /** + * Defers invoking the func until the current call stack has cleared. Any additional arguments are provided to + * func when it’s invoked. + * + * @param func The function to defer. + * @param args The arguments to invoke the function with. + * @return Returns the timer id. + */ + defer( + func: T, + ...args: any[] + ): number; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.defer + */ + defer(...args: any[]): LoDashImplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.defer + */ + defer(...args: any[]): LoDashExplicitWrapper; + } + + //_.delay + interface LoDashStatic { + /** + * Invokes func after wait milliseconds. Any additional arguments are provided to func when it’s invoked. + * + * @param func The function to delay. + * @param wait The number of milliseconds to delay invocation. + * @param args The arguments to invoke the function with. + * @return Returns the timer id. + */ + delay( + func: T, + wait: number, + ...args: any[] + ): number; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.delay + */ + delay( + wait: number, + ...args: any[] + ): LoDashImplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.delay + */ + delay( + wait: number, + ...args: any[] + ): LoDashExplicitWrapper; + } + + interface LoDashStatic { + /** + * Creates a function that invokes `func` with arguments reversed. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to flip arguments for. + * @returns {Function} Returns the new function. + * @example + * + * var flipped = _.flip(function() { + * return _.toArray(arguments); + * }); + * + * flipped('a', 'b', 'c', 'd'); + * // => ['d', 'c', 'b', 'a'] + */ + flip(func: T): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.flip + */ + flip(): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.flip + */ + flip(): LoDashExplicitObjectWrapper; + } + + //_.flow + interface LoDashStatic { + /** + * Creates a function that returns the result of invoking the provided functions with the this binding of the + * created function, where each successive invocation is supplied the return value of the previous. + * + * @param funcs Functions to invoke. + * @return Returns the new function. + */ + flow(...funcs: Function[]): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.flow + */ + flow(...funcs: Function[]): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.flow + */ + flow(...funcs: Function[]): LoDashExplicitObjectWrapper; + } + + //_.flowRight + interface LoDashStatic { + /** + * This method is like _.flow except that it creates a function that invokes the provided functions from right + * to left. + * + * @param funcs Functions to invoke. + * @return Returns the new function. + */ + flowRight(...funcs: Function[]): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.flowRight + */ + flowRight(...funcs: Function[]): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.flowRight + */ + flowRight(...funcs: Function[]): LoDashExplicitObjectWrapper; + } + + + //_.memoize + interface MemoizedFunction extends Function { + cache: MapCache; + } + + interface LoDashStatic { + /** + * Creates a function that memoizes the result of func. If resolver is provided it determines the cache key for + * storing the result based on the arguments provided to the memoized function. By default, the first argument + * provided to the memoized function is coerced to a string and used as the cache key. The func is invoked with + * the this binding of the memoized function. + * + * @param func The function to have its output memoized. + * @param resolver The function to resolve the cache key. + * @return Returns the new memoizing function. + */ + memoize: { + (func: T, resolver?: Function): T & MemoizedFunction; + Cache: MapCache; + } + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.memoize + */ + memoize(resolver?: Function): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.memoize + */ + memoize(resolver?: Function): LoDashExplicitObjectWrapper; + } + + //_.overArgs (was _.modArgs) + interface LoDashStatic { + /** + * Creates a function that runs each argument through a corresponding transform function. + * + * @param func The function to wrap. + * @param transforms The functions to transform arguments, specified as individual functions or arrays + * of functions. + * @return Returns the new function. + */ + overArgs( + func: T, + ...transforms: Function[] + ): TResult; + + /** + * @see _.overArgs + */ + overArgs( + func: T, + transforms: Function[] + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.overArgs + */ + overArgs(...transforms: Function[]): LoDashImplicitObjectWrapper; + + /** + * @see _.overArgs + */ + overArgs(transforms: Function[]): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.overArgs + */ + overArgs(...transforms: Function[]): LoDashExplicitObjectWrapper; + + /** + * @see _.overArgs + */ + overArgs(transforms: Function[]): LoDashExplicitObjectWrapper; + } + + //_.negate + interface LoDashStatic { + /** + * Creates a function that negates the result of the predicate func. The func predicate is invoked with + * the this binding and arguments of the created function. + * + * @param predicate The predicate to negate. + * @return Returns the new function. + */ + negate(predicate: T): (...args: any[]) => boolean; + + /** + * @see _.negate + */ + negate(predicate: T): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.negate + */ + negate(): LoDashImplicitObjectWrapper<(...args: any[]) => boolean>; + + /** + * @see _.negate + */ + negate(): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.negate + */ + negate(): LoDashExplicitObjectWrapper<(...args: any[]) => boolean>; + + /** + * @see _.negate + */ + negate(): LoDashExplicitObjectWrapper; + } + + //_.once + interface LoDashStatic { + /** + * Creates a function that is restricted to invoking func once. Repeat calls to the function return the value + * of the first call. The func is invoked with the this binding and arguments of the created function. + * + * @param func The function to restrict. + * @return Returns the new restricted function. + */ + once(func: T): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.once + */ + once(): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.once + */ + once(): LoDashExplicitObjectWrapper; + } + + //_.partial + interface LoDashStatic { + /** + * Creates a function that, when called, invokes func with any additional partial arguments + * prepended to those provided to the new function. This method is similar to _.bind except + * it does not alter the this binding. + * @param func The function to partially apply arguments to. + * @param args Arguments to be partially applied. + * @return The new partially applied function. + **/ + partial: Partial; + } + + type PH = LoDashStatic; + + interface Function0 { + (): R; + } + interface Function1 { + (t1: T1): R; + } + interface Function2 { + (t1: T1, t2: T2): R; + } + interface Function3 { + (t1: T1, t2: T2, t3: T3): R; + } + interface Function4 { + (t1: T1, t2: T2, t3: T3, t4: T4): R; + } + + interface Partial { + // arity 0 + (func: Function0): Function0; + // arity 1 + (func: Function1): Function1; + (func: Function1, arg1: T1): Function0; + // arity 2 + (func: Function2): Function2; + (func: Function2, arg1: T1): Function1< T2, R>; + (func: Function2, plc1: PH, arg2: T2): Function1; + (func: Function2, arg1: T1, arg2: T2): Function0< R>; + // arity 3 + (func: Function3): Function3; + (func: Function3, arg1: T1): Function2< T2, T3, R>; + (func: Function3, plc1: PH, arg2: T2): Function2; + (func: Function3, arg1: T1, arg2: T2): Function1< T3, R>; + (func: Function3, plc1: PH, plc2: PH, arg3: T3): Function2; + (func: Function3, arg1: T1, plc2: PH, arg3: T3): Function1< T2, R>; + (func: Function3, plc1: PH, arg2: T2, arg3: T3): Function1; + (func: Function3, arg1: T1, arg2: T2, arg3: T3): Function0< R>; + // arity 4 + (func: Function4): Function4; + (func: Function4, arg1: T1): Function3< T2, T3, T4, R>; + (func: Function4, plc1: PH, arg2: T2): Function3; + (func: Function4, arg1: T1, arg2: T2): Function2< T3, T4, R>; + (func: Function4, plc1: PH, plc2: PH, arg3: T3): Function3; + (func: Function4, arg1: T1, plc2: PH, arg3: T3): Function2< T2, T4, R>; + (func: Function4, plc1: PH, arg2: T2, arg3: T3): Function2; + (func: Function4, arg1: T1, arg2: T2, arg3: T3): Function1< T4, R>; + (func: Function4, plc1: PH, plc2: PH, plc3: PH, arg4: T4): Function3; + (func: Function4, arg1: T1, plc2: PH, plc3: PH, arg4: T4): Function2< T2, T3, R>; + (func: Function4, plc1: PH, arg2: T2, plc3: PH, arg4: T4): Function2; + (func: Function4, arg1: T1, arg2: T2, plc3: PH, arg4: T4): Function1< T3, R>; + (func: Function4, plc1: PH, plc2: PH, arg3: T3, arg4: T4): Function2; + (func: Function4, arg1: T1, plc2: PH, arg3: T3, arg4: T4): Function1< T2, R>; + (func: Function4, plc1: PH, arg2: T2, arg3: T3, arg4: T4): Function1; + (func: Function4, arg1: T1, arg2: T2, arg3: T3, arg4: T4): Function0< R>; + // catch-all + (func: Function, ...args: any[]): Function; + } + + //_.partialRight + interface LoDashStatic { + /** + * This method is like _.partial except that partial arguments are appended to those provided + * to the new function. + * @param func The function to partially apply arguments to. + * @param args Arguments to be partially applied. + * @return The new partially applied function. + **/ + partialRight: PartialRight + } + + interface PartialRight { + // arity 0 + (func: Function0): Function0; + // arity 1 + (func: Function1): Function1; + (func: Function1, arg1: T1): Function0; + // arity 2 + (func: Function2): Function2; + (func: Function2, arg1: T1, plc2: PH): Function1< T2, R>; + (func: Function2, arg2: T2): Function1; + (func: Function2, arg1: T1, arg2: T2): Function0< R>; + // arity 3 + (func: Function3): Function3; + (func: Function3, arg1: T1, plc2: PH, plc3: PH): Function2< T2, T3, R>; + (func: Function3, arg2: T2, plc3: PH): Function2; + (func: Function3, arg1: T1, arg2: T2, plc3: PH): Function1< T3, R>; + (func: Function3, arg3: T3): Function2; + (func: Function3, arg1: T1, plc2: PH, arg3: T3): Function1< T2, R>; + (func: Function3, arg2: T2, arg3: T3): Function1; + (func: Function3, arg1: T1, arg2: T2, arg3: T3): Function0< R>; + // arity 4 + (func: Function4): Function4; + (func: Function4, arg1: T1, plc2: PH, plc3: PH, plc4: PH): Function3< T2, T3, T4, R>; + (func: Function4, arg2: T2, plc3: PH, plc4: PH): Function3; + (func: Function4, arg1: T1, arg2: T2, plc3: PH, plc4: PH): Function2< T3, T4, R>; + (func: Function4, arg3: T3, plc4: PH): Function3; + (func: Function4, arg1: T1, plc2: PH, arg3: T3, plc4: PH): Function2< T2, T4, R>; + (func: Function4, arg2: T2, arg3: T3, plc4: PH): Function2; + (func: Function4, arg1: T1, arg2: T2, arg3: T3, plc4: PH): Function1< T4, R>; + (func: Function4, arg4: T4): Function3; + (func: Function4, arg1: T1, plc2: PH, plc3: PH, arg4: T4): Function2< T2, T3, R>; + (func: Function4, arg2: T2, plc3: PH, arg4: T4): Function2; + (func: Function4, arg1: T1, arg2: T2, plc3: PH, arg4: T4): Function1< T3, R>; + (func: Function4, arg3: T3, arg4: T4): Function2; + (func: Function4, arg1: T1, plc2: PH, arg3: T3, arg4: T4): Function1< T2, R>; + (func: Function4, arg2: T2, arg3: T3, arg4: T4): Function1; + (func: Function4, arg1: T1, arg2: T2, arg3: T3, arg4: T4): Function0< R>; + // catch-all + (func: Function, ...args: any[]): Function; + } + + //_.rearg + interface LoDashStatic { + /** + * Creates a function that invokes func with arguments arranged according to the specified indexes where the + * argument value at the first index is provided as the first argument, the argument value at the second index + * is provided as the second argument, and so on. + * @param func The function to rearrange arguments for. + * @param indexes The arranged argument indexes, specified as individual indexes or arrays of indexes. + * @return Returns the new function. + */ + rearg(func: Function, indexes: number[]): TResult; + + /** + * @see _.rearg + */ + rearg(func: Function, ...indexes: number[]): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.rearg + */ + rearg(indexes: number[]): LoDashImplicitObjectWrapper; + + /** + * @see _.rearg + */ + rearg(...indexes: number[]): LoDashImplicitObjectWrapper; + } + + //_.rest + interface LoDashStatic { + /** + * Creates a function that invokes func with the this binding of the created function and arguments from start + * and beyond provided as an array. + * + * Note: This method is based on the rest parameter. + * + * @param func The function to apply a rest parameter to. + * @param start The start position of the rest parameter. + * @return Returns the new function. + */ + rest( + func: Function, + start?: number + ): TResult; + + /** + * @see _.rest + */ + rest( + func: TFunc, + start?: number + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.rest + */ + rest(start?: number): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.rest + */ + rest(start?: number): LoDashExplicitObjectWrapper; + } + + //_.spread + interface LoDashStatic { + /** + * Creates a function that invokes func with the this binding of the created function and an array of arguments + * much like Function#apply. + * + * Note: This method is based on the spread operator. + * + * @param func The function to spread arguments over. + * @return Returns the new function. + */ + spread(func: F): T; + + /** + * @see _.spread + */ + spread(func: Function): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.spread + */ + spread(): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.spread + */ + spread(): LoDashExplicitObjectWrapper; + } + + //_.throttle + interface ThrottleSettings { + /** + * If you'd like to disable the leading-edge call, pass this as false. + */ + leading?: boolean; + + /** + * If you'd like to disable the execution on the trailing-edge, pass false. + */ + trailing?: boolean; + } + + interface LoDashStatic { + /** + * Creates a throttled function that only invokes func at most once per every wait milliseconds. The throttled + * function comes with a cancel method to cancel delayed invocations. Provide an options object to indicate + * that func should be invoked on the leading and/or trailing edge of the wait timeout. Subsequent calls to + * the throttled function return the result of the last func call. + * + * Note: If leading and trailing options are true, func is invoked on the trailing edge of the timeout only if + * the the throttled function is invoked more than once during the wait timeout. + * + * @param func The function to throttle. + * @param wait The number of milliseconds to throttle invocations to. + * @param options The options object. + * @param options.leading Specify invoking on the leading edge of the timeout. + * @param options.trailing Specify invoking on the trailing edge of the timeout. + * @return Returns the new throttled function. + */ + throttle( + func: T, + wait?: number, + options?: ThrottleSettings + ): T & Cancelable; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.throttle + */ + throttle( + wait?: number, + options?: ThrottleSettings + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.throttle + */ + throttle( + wait?: number, + options?: ThrottleSettings + ): LoDashExplicitObjectWrapper; + } + + //_.unary + interface LoDashStatic { + /** + * Creates a function that accepts up to one argument, ignoring any + * additional arguments. + * + * @static + * @memberOf _ + * @category Function + * @param {Function} func The function to cap arguments for. + * @returns {Function} Returns the new function. + * @example + * + * _.map(['6', '8', '10'], _.unary(parseInt)); + * // => [6, 8, 10] + */ + unary(func: T): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.unary + */ + unary(): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.unary + */ + unary(): LoDashExplicitObjectWrapper; + } + + //_.wrap + interface LoDashStatic { + /** + * Creates a function that provides value to the wrapper function as its first argument. Any additional + * arguments provided to the function are appended to those provided to the wrapper function. The wrapper is + * invoked with the this binding of the created function. + * + * @param value The value to wrap. + * @param wrapper The wrapper function. + * @return Returns the new function. + */ + wrap( + value: V, + wrapper: W + ): R; + + /** + * @see _.wrap + */ + wrap( + value: V, + wrapper: Function + ): R; + + /** + * @see _.wrap + */ + wrap( + value: any, + wrapper: Function + ): R; + } + + interface LoDashImplicitWrapper { + /** + * @see _.wrap + */ + wrap(wrapper: W): LoDashImplicitObjectWrapper; + + /** + * @see _.wrap + */ + wrap(wrapper: Function): LoDashImplicitObjectWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.wrap + */ + wrap(wrapper: W): LoDashImplicitObjectWrapper; + + /** + * @see _.wrap + */ + wrap(wrapper: Function): LoDashImplicitObjectWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.wrap + */ + wrap(wrapper: W): LoDashImplicitObjectWrapper; + + /** + * @see _.wrap + */ + wrap(wrapper: Function): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.wrap + */ + wrap(wrapper: W): LoDashExplicitObjectWrapper; + + /** + * @see _.wrap + */ + wrap(wrapper: Function): LoDashExplicitObjectWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.wrap + */ + wrap(wrapper: W): LoDashExplicitObjectWrapper; + + /** + * @see _.wrap + */ + wrap(wrapper: Function): LoDashExplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.wrap + */ + wrap(wrapper: W): LoDashExplicitObjectWrapper; + + /** + * @see _.wrap + */ + wrap(wrapper: Function): LoDashExplicitObjectWrapper; + } + + /******** + * Lang * + ********/ + + //_.castArray + interface LoDashStatic { + /** + * Casts value as an array if it’s not one. + * + * @param value The value to inspect. + * @return Returns the cast array. + */ + castArray(value: T): T[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.castArray + */ + castArray(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.castArray + */ + castArray(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.castArray + */ + castArray(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.castArray + */ + castArray(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.castArray + */ + castArray(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.castArray + */ + castArray(): LoDashExplicitArrayWrapper; + } + + //_.clone + interface LoDashStatic { + /** + * Creates a shallow clone of value. + * + * Note: This method is loosely based on the structured clone algorithm and supports cloning arrays, + * array buffers, booleans, date objects, maps, numbers, Object objects, regexes, sets, strings, symbols, + * and typed arrays. The own enumerable properties of arguments objects are cloned as plain objects. An empty + * object is returned for uncloneable values such as error objects, functions, DOM nodes, and WeakMaps. + * + * @param value The value to clone. + * @return Returns the cloned value. + */ + clone(value: T): T; + } + + interface LoDashImplicitWrapper { + /** + * @see _.clone + */ + clone(): T; + } + + interface LoDashImplicitArrayWrapper { + + /** + * @see _.clone + */ + clone(): T[]; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.clone + */ + clone(): T; + } + + interface LoDashExplicitWrapper { + /** + * @see _.clone + */ + clone(): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + + /** + * @see _.clone + */ + clone(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.clone + */ + clone(): LoDashExplicitObjectWrapper; + } + + //_.cloneDeep + interface LoDashStatic { + /** + * This method is like _.clone except that it recursively clones value. + * + * @param value The value to recursively clone. + * @return Returns the deep cloned value. + */ + cloneDeep(value: T): T; + } + + interface LoDashImplicitWrapper { + /** + * @see _.cloneDeep + */ + cloneDeep(): T; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.cloneDeep + */ + cloneDeep(): T[]; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.cloneDeep + */ + cloneDeep(): T; + } + + interface LoDashExplicitWrapper { + /** + * @see _.cloneDeep + */ + cloneDeep(): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.cloneDeep + */ + cloneDeep(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.cloneDeep + */ + cloneDeep(): LoDashExplicitObjectWrapper; + } + + //_.cloneDeepWith + interface CloneDeepWithCustomizer { + (value: TValue): TResult; + } + + interface LoDashStatic { + /** + * This method is like _.cloneWith except that it recursively clones value. + * + * @param value The value to recursively clone. + * @param customizer The function to customize cloning. + * @return Returns the deep cloned value. + */ + cloneDeepWith( + value: any, + customizer?: CloneDeepWithCustomizer + ): TResult; + + /** + * @see _.clonDeepeWith + */ + cloneDeepWith( + value: T, + customizer?: CloneDeepWithCustomizer + ): TResult; + } + + interface LoDashImplicitWrapper { + /** + * @see _.cloneDeepWith + */ + cloneDeepWith( + customizer?: CloneDeepWithCustomizer + ): TResult; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.cloneDeepWith + */ + cloneDeepWith( + customizer?: CloneDeepWithCustomizer + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.cloneDeepWith + */ + cloneDeepWith( + customizer?: CloneDeepWithCustomizer + ): TResult; + } + + interface LoDashExplicitWrapper { + /** + * @see _.cloneDeepWith + */ + cloneDeepWith( + customizer?: CloneDeepWithCustomizer + ): LoDashExplicitWrapper; + + /** + * @see _.cloneDeepWith + */ + cloneDeepWith( + customizer?: CloneDeepWithCustomizer + ): LoDashExplicitArrayWrapper; + + /** + * @see _.cloneDeepWith + */ + cloneDeepWith( + customizer?: CloneDeepWithCustomizer + ): LoDashExplicitObjectWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.cloneDeepWith + */ + cloneDeepWith( + customizer?: CloneDeepWithCustomizer + ): LoDashExplicitWrapper; + + /** + * @see _.cloneDeepWith + */ + cloneDeepWith( + customizer?: CloneDeepWithCustomizer + ): LoDashExplicitArrayWrapper; + + /** + * @see _.cloneDeepWith + */ + cloneDeepWith( + customizer?: CloneDeepWithCustomizer + ): LoDashExplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.cloneDeepWith + */ + cloneDeepWith( + customizer?: CloneDeepWithCustomizer + ): LoDashExplicitWrapper; + + /** + * @see _.cloneDeepWith + */ + cloneDeepWith( + customizer?: CloneDeepWithCustomizer + ): LoDashExplicitArrayWrapper; + + /** + * @see _.cloneDeepWith + */ + cloneDeepWith( + customizer?: CloneDeepWithCustomizer + ): LoDashExplicitObjectWrapper; + } + + //_.cloneWith + interface CloneWithCustomizer { + (value: TValue): TResult; + } + + interface LoDashStatic { + /** + * This method is like _.clone except that it accepts customizer which is invoked to produce the cloned value. + * If customizer returns undefined cloning is handled by the method instead. + * + * @param value The value to clone. + * @param customizer The function to customize cloning. + * @return Returns the cloned value. + */ + cloneWith( + value: any, + customizer?: CloneWithCustomizer + ): TResult; + + /** + * @see _.cloneWith + */ + cloneWith( + value: T, + customizer?: CloneWithCustomizer + ): TResult; + } + + interface LoDashImplicitWrapper { + /** + * @see _.cloneWith + */ + cloneWith( + customizer?: CloneWithCustomizer + ): TResult; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.cloneWith + */ + cloneWith( + customizer?: CloneWithCustomizer + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.cloneWith + */ + cloneWith( + customizer?: CloneWithCustomizer + ): TResult; + } + + interface LoDashExplicitWrapper { + /** + * @see _.cloneWith + */ + cloneWith( + customizer?: CloneWithCustomizer + ): LoDashExplicitWrapper; + + /** + * @see _.cloneWith + */ + cloneWith( + customizer?: CloneWithCustomizer + ): LoDashExplicitArrayWrapper; + + /** + * @see _.cloneWith + */ + cloneWith( + customizer?: CloneWithCustomizer + ): LoDashExplicitObjectWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.cloneWith + */ + cloneWith( + customizer?: CloneWithCustomizer + ): LoDashExplicitWrapper; + + /** + * @see _.cloneWith + */ + cloneWith( + customizer?: CloneWithCustomizer + ): LoDashExplicitArrayWrapper; + + /** + * @see _.cloneWith + */ + cloneWith( + customizer?: CloneWithCustomizer + ): LoDashExplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.cloneWith + */ + cloneWith( + customizer?: CloneWithCustomizer + ): LoDashExplicitWrapper; + + /** + * @see _.cloneWith + */ + cloneWith( + customizer?: CloneWithCustomizer + ): LoDashExplicitArrayWrapper; + + /** + * @see _.cloneWith + */ + cloneWith( + customizer?: CloneWithCustomizer + ): LoDashExplicitObjectWrapper; + } + + //_.eq + interface LoDashStatic { + /** + * Performs a [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) + * comparison between two values to determine if they are equivalent. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'user': 'fred' }; + * var other = { 'user': 'fred' }; + * + * _.eq(object, object); + * // => true + * + * _.eq(object, other); + * // => false + * + * _.eq('a', 'a'); + * // => true + * + * _.eq('a', Object('a')); + * // => false + * + * _.eq(NaN, NaN); + * // => true + */ + eq( + value: any, + other: any + ): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isEqual + */ + eq( + other: any + ): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isEqual + */ + eq( + other: any + ): LoDashExplicitWrapper; + } + + //_.gt + interface LoDashStatic { + /** + * Checks if value is greater than other. + * + * @param value The value to compare. + * @param other The other value to compare. + * @return Returns true if value is greater than other, else false. + */ + gt( + value: any, + other: any + ): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.gt + */ + gt(other: any): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.gt + */ + gt(other: any): LoDashExplicitWrapper; + } + + //_.gte + interface LoDashStatic { + /** + * Checks if value is greater than or equal to other. + * + * @param value The value to compare. + * @param other The other value to compare. + * @return Returns true if value is greater than or equal to other, else false. + */ + gte( + value: any, + other: any + ): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.gte + */ + gte(other: any): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.gte + */ + gte(other: any): LoDashExplicitWrapper; + } + + //_.isArguments + interface LoDashStatic { + /** + * Checks if value is classified as an arguments object. + * + * @param value The value to check. + * @return Returns true if value is correctly classified, else false. + */ + isArguments(value?: any): value is IArguments; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isArguments + */ + isArguments(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isArguments + */ + isArguments(): LoDashExplicitWrapper; + } + + //_.isArray + interface LoDashStatic { + /** + * Checks if value is classified as an Array object. + * @param value The value to check. + * + * @return Returns true if value is correctly classified, else false. + */ + isArray(value?: any): value is T[]; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isArray + */ + isArray(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isArray + */ + isArray(): LoDashExplicitWrapper; + } + + //_.isArrayBuffer + interface LoDashStatic { + /** + * Checks if value is classified as an ArrayBuffer object. + * + * @param value The value to check. + * @return Returns true if value is correctly classified, else false. + */ + isArrayBuffer(value?: any): value is ArrayBuffer; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isArrayBuffer + */ + isArrayBuffer(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isArrayBuffer + */ + isArrayBuffer(): LoDashExplicitWrapper; + } + + //_.isArrayLike + interface LoDashStatic { + /** + * Checks if `value` is array-like. A value is considered array-like if it's + * not a function and has a `value.length` that's an integer greater than or + * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. + * + * @static + * @memberOf _ + * @type Function + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is array-like, else `false`. + * @example + * + * _.isArrayLike([1, 2, 3]); + * // => true + * + * _.isArrayLike(document.body.children); + * // => true + * + * _.isArrayLike('abc'); + * // => true + * + * _.isArrayLike(_.noop); + * // => false + */ + isArrayLike(value?: any): value is T[]; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isArrayLike + */ + isArrayLike(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isArrayLike + */ + isArrayLike(): LoDashExplicitWrapper; + } + + //_.isArrayLikeObject + interface LoDashStatic { + /** + * This method is like `_.isArrayLike` except that it also checks if `value` + * is an object. + * + * @static + * @memberOf _ + * @type Function + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an array-like object, else `false`. + * @example + * + * _.isArrayLikeObject([1, 2, 3]); + * // => true + * + * _.isArrayLikeObject(document.body.children); + * // => true + * + * _.isArrayLikeObject('abc'); + * // => false + * + * _.isArrayLikeObject(_.noop); + * // => false + */ + isArrayLikeObject(value?: any): value is T[]; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isArrayLikeObject + */ + isArrayLikeObject(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isArrayLikeObject + */ + isArrayLikeObject(): LoDashExplicitWrapper; + } + + //_.isBoolean + interface LoDashStatic { + /** + * Checks if value is classified as a boolean primitive or object. + * + * @param value The value to check. + * @return Returns true if value is correctly classified, else false. + */ + isBoolean(value?: any): value is boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isBoolean + */ + isBoolean(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isBoolean + */ + isBoolean(): LoDashExplicitWrapper; + } + + //_.isBuffer + interface LoDashStatic { + /** + * Checks if value is a buffer. + * + * @param value The value to check. + * @return Returns true if value is a buffer, else false. + */ + isBuffer(value?: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isBuffer + */ + isBuffer(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isBuffer + */ + isBuffer(): LoDashExplicitWrapper; + } + + //_.isDate + interface LoDashStatic { + /** + * Checks if value is classified as a Date object. + * @param value The value to check. + * + * @return Returns true if value is correctly classified, else false. + */ + isDate(value?: any): value is Date; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isDate + */ + isDate(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isDate + */ + isDate(): LoDashExplicitWrapper; + } + + //_.isElement + interface LoDashStatic { + /** + * Checks if value is a DOM element. + * + * @param value The value to check. + * @return Returns true if value is a DOM element, else false. + */ + isElement(value?: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isElement + */ + isElement(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isElement + */ + isElement(): LoDashExplicitWrapper; + } + + //_.isEmpty + interface LoDashStatic { + /** + * Checks if value is empty. A value is considered empty unless it’s an arguments object, array, string, or + * jQuery-like collection with a length greater than 0 or an object with own enumerable properties. + * + * @param value The value to inspect. + * @return Returns true if value is empty, else false. + */ + isEmpty(value?: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isEmpty + */ + isEmpty(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isEmpty + */ + isEmpty(): LoDashExplicitWrapper; + } + + //_.isEqual + interface LoDashStatic { + /** + * Performs a deep comparison between two values to determine if they are + * equivalent. + * + * **Note:** This method supports comparing arrays, array buffers, booleans, + * date objects, error objects, maps, numbers, `Object` objects, regexes, + * sets, strings, symbols, and typed arrays. `Object` objects are compared + * by their own, not inherited, enumerable properties. Functions and DOM + * nodes are **not** supported. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * var object = { 'user': 'fred' }; + * var other = { 'user': 'fred' }; + * + * _.isEqual(object, other); + * // => true + * + * object === other; + * // => false + */ + isEqual( + value: any, + other: any + ): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isEqual + */ + isEqual( + other: any + ): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isEqual + */ + isEqual( + other: any + ): LoDashExplicitWrapper; + } + + // _.isEqualWith + interface IsEqualCustomizer { + (value: any, other: any, indexOrKey?: number|string): boolean; + } + + interface LoDashStatic { + /** + * This method is like `_.isEqual` except that it accepts `customizer` which is + * invoked to compare values. If `customizer` returns `undefined` comparisons are + * handled by the method instead. The `customizer` is invoked with up to seven arguments: + * (objValue, othValue [, index|key, object, other, stack]). + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to compare. + * @param {*} other The other value to compare. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if the values are equivalent, else `false`. + * @example + * + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); + * } + * + * function customizer(objValue, othValue) { + * if (isGreeting(objValue) && isGreeting(othValue)) { + * return true; + * } + * } + * + * var array = ['hello', 'goodbye']; + * var other = ['hi', 'goodbye']; + * + * _.isEqualWith(array, other, customizer); + * // => true + */ + isEqualWith( + value: any, + other: any, + customizer: IsEqualCustomizer + ): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isEqualWith + */ + isEqualWith( + other: any, + customizer: IsEqualCustomizer + ): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isEqualWith + */ + isEqualWith( + other: any, + customizer: IsEqualCustomizer + ): LoDashExplicitWrapper; + } + + //_.isError + interface LoDashStatic { + /** + * Checks if value is an Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, or URIError + * object. + * + * @param value The value to check. + * @return Returns true if value is an error object, else false. + */ + isError(value: any): value is Error; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isError + */ + isError(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isError + */ + isError(): LoDashExplicitWrapper; + } + + //_.isFinite + interface LoDashStatic { + /** + * Checks if value is a finite primitive number. + * + * Note: This method is based on Number.isFinite. + * + * @param value The value to check. + * @return Returns true if value is a finite number, else false. + */ + isFinite(value?: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isFinite + */ + isFinite(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isFinite + */ + isFinite(): LoDashExplicitWrapper; + } + + //_.isFunction + interface LoDashStatic { + /** + * Checks if value is classified as a Function object. + * + * @param value The value to check. + * @return Returns true if value is correctly classified, else false. + */ + isFunction(value?: any): value is Function; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isFunction + */ + isFunction(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isFunction + */ + isFunction(): LoDashExplicitWrapper; + } + + //_.isInteger + interface LoDashStatic { + /** + * Checks if `value` is an integer. + * + * **Note:** This method is based on [`Number.isInteger`](https://mdn.io/Number/isInteger). + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is an integer, else `false`. + * @example + * + * _.isInteger(3); + * // => true + * + * _.isInteger(Number.MIN_VALUE); + * // => false + * + * _.isInteger(Infinity); + * // => false + * + * _.isInteger('3'); + * // => false + */ + isInteger(value?: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isInteger + */ + isInteger(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isInteger + */ + isInteger(): LoDashExplicitWrapper; + } + + //_.isLength + interface LoDashStatic { + /** + * Checks if `value` is a valid array-like length. + * + * **Note:** This function is loosely based on [`ToLength`](http://ecma-international.org/ecma-262/6.0/#sec-tolength). + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. + * @example + * + * _.isLength(3); + * // => true + * + * _.isLength(Number.MIN_VALUE); + * // => false + * + * _.isLength(Infinity); + * // => false + * + * _.isLength('3'); + * // => false + */ + isLength(value?: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isLength + */ + isLength(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isLength + */ + isLength(): LoDashExplicitWrapper; + } + + //_.isMap + interface LoDashStatic { + /** + * Checks if value is classified as a Map object. + * + * @param value The value to check. + * @returns Returns true if value is correctly classified, else false. + */ + isMap(value?: any): value is Map; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isMap + */ + isMap(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isMap + */ + isMap(): LoDashExplicitWrapper; + } + + //_.isMatch + interface isMatchCustomizer { + (value: any, other: any, indexOrKey?: number|string): boolean; + } + + interface LoDashStatic { + /** + * Performs a deep comparison between `object` and `source` to determine if + * `object` contains equivalent property values. + * + * **Note:** This method supports comparing the same values as `_.isEqual`. + * + * @static + * @memberOf _ + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @example + * + * var object = { 'user': 'fred', 'age': 40 }; + * + * _.isMatch(object, { 'age': 40 }); + * // => true + * + * _.isMatch(object, { 'age': 36 }); + * // => false + */ + isMatch(object: Object, source: Object): boolean; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.isMatch + */ + isMatch(source: Object): boolean; + } + + //_.isMatchWith + interface isMatchWithCustomizer { + (value: any, other: any, indexOrKey?: number|string): boolean; + } + + interface LoDashStatic { + /** + * This method is like `_.isMatch` except that it accepts `customizer` which + * is invoked to compare values. If `customizer` returns `undefined` comparisons + * are handled by the method instead. The `customizer` is invoked with three + * arguments: (objValue, srcValue, index|key, object, source). + * + * @static + * @memberOf _ + * @category Lang + * @param {Object} object The object to inspect. + * @param {Object} source The object of property values to match. + * @param {Function} [customizer] The function to customize comparisons. + * @returns {boolean} Returns `true` if `object` is a match, else `false`. + * @example + * + * function isGreeting(value) { + * return /^h(?:i|ello)$/.test(value); + * } + * + * function customizer(objValue, srcValue) { + * if (isGreeting(objValue) && isGreeting(srcValue)) { + * return true; + * } + * } + * + * var object = { 'greeting': 'hello' }; + * var source = { 'greeting': 'hi' }; + * + * _.isMatchWith(object, source, customizer); + * // => true + */ + isMatchWith(object: Object, source: Object, customizer: isMatchWithCustomizer): boolean; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.isMatchWith + */ + isMatchWith(source: Object, customizer: isMatchWithCustomizer): boolean; + } + + //_.isNaN + interface LoDashStatic { + /** + * Checks if value is NaN. + * + * Note: This method is not the same as isNaN which returns true for undefined and other non-numeric values. + * + * @param value The value to check. + * @return Returns true if value is NaN, else false. + */ + isNaN(value?: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isNaN + */ + isNaN(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isNaN + */ + isNaN(): LoDashExplicitWrapper; + } + + //_.isNative + interface LoDashStatic { + /** + * Checks if value is a native function. + * @param value The value to check. + * + * @retrun Returns true if value is a native function, else false. + */ + isNative(value: any): value is Function; + } + + interface LoDashImplicitWrapperBase { + /** + * see _.isNative + */ + isNative(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * see _.isNative + */ + isNative(): LoDashExplicitWrapper; + } + + //_.isNil + interface LoDashStatic { + /** + * Checks if `value` is `null` or `undefined`. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is nullish, else `false`. + * @example + * + * _.isNil(null); + * // => true + * + * _.isNil(void 0); + * // => true + * + * _.isNil(NaN); + * // => false + */ + isNil(value?: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * see _.isNil + */ + isNil(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * see _.isNil + */ + isNil(): LoDashExplicitWrapper; + } + + //_.isNull + interface LoDashStatic { + /** + * Checks if value is null. + * + * @param value The value to check. + * @return Returns true if value is null, else false. + */ + isNull(value?: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * see _.isNull + */ + isNull(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * see _.isNull + */ + isNull(): LoDashExplicitWrapper; + } + + //_.isNumber + interface LoDashStatic { + /** + * Checks if value is classified as a Number primitive or object. + * + * Note: To exclude Infinity, -Infinity, and NaN, which are classified as numbers, use the _.isFinite method. + * + * @param value The value to check. + * @return Returns true if value is correctly classified, else false. + */ + isNumber(value?: any): value is number; + } + + interface LoDashImplicitWrapperBase { + /** + * see _.isNumber + */ + isNumber(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * see _.isNumber + */ + isNumber(): LoDashExplicitWrapper; + } + + //_.isObject + interface LoDashStatic { + /** + * Checks if value is the language type of Object. (e.g. arrays, functions, objects, regexes, new Number(0), + * and new String('')) + * + * @param value The value to check. + * @return Returns true if value is an object, else false. + */ + isObject(value?: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * see _.isObject + */ + isObject(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * see _.isObject + */ + isObject(): LoDashExplicitWrapper; + } + + //_.isObjectLike + interface LoDashStatic { + /** + * Checks if `value` is object-like. A value is object-like if it's not `null` + * and has a `typeof` result of "object". + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is object-like, else `false`. + * @example + * + * _.isObjectLike({}); + * // => true + * + * _.isObjectLike([1, 2, 3]); + * // => true + * + * _.isObjectLike(_.noop); + * // => false + * + * _.isObjectLike(null); + * // => false + */ + isObjectLike(value?: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * see _.isObjectLike + */ + isObjectLike(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * see _.isObjectLike + */ + isObjectLike(): LoDashExplicitWrapper; + } + + //_.isPlainObject + interface LoDashStatic { + /** + * Checks if value is a plain object, that is, an object created by the Object constructor or one with a + * [[Prototype]] of null. + * + * Note: This method assumes objects created by the Object constructor have no inherited enumerable properties. + * + * @param value The value to check. + * @return Returns true if value is a plain object, else false. + */ + isPlainObject(value?: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * see _.isPlainObject + */ + isPlainObject(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * see _.isPlainObject + */ + isPlainObject(): LoDashExplicitWrapper; + } + + //_.isRegExp + interface LoDashStatic { + /** + * Checks if value is classified as a RegExp object. + * @param value The value to check. + * + * @return Returns true if value is correctly classified, else false. + */ + isRegExp(value?: any): value is RegExp; + } + + interface LoDashImplicitWrapperBase { + /** + * see _.isRegExp + */ + isRegExp(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * see _.isRegExp + */ + isRegExp(): LoDashExplicitWrapper; + } + + //_.isSafeInteger + interface LoDashStatic { + /** + * Checks if `value` is a safe integer. An integer is safe if it's an IEEE-754 + * double precision number which isn't the result of a rounded unsafe integer. + * + * **Note:** This method is based on [`Number.isSafeInteger`](https://mdn.io/Number/isSafeInteger). + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is a safe integer, else `false`. + * @example + * + * _.isSafeInteger(3); + * // => true + * + * _.isSafeInteger(Number.MIN_VALUE); + * // => false + * + * _.isSafeInteger(Infinity); + * // => false + * + * _.isSafeInteger('3'); + * // => false + */ + isSafeInteger(value: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * see _.isSafeInteger + */ + isSafeInteger(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * see _.isSafeInteger + */ + isSafeInteger(): LoDashExplicitWrapper; + } + + //_.isSet + interface LoDashStatic { + /** + * Checks if value is classified as a Set object. + * + * @param value The value to check. + * @returns Returns true if value is correctly classified, else false. + */ + isSet(value?: any): value is Set; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isSet + */ + isSet(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isSet + */ + isSet(): LoDashExplicitWrapper; + } + + //_.isString + interface LoDashStatic { + /** + * Checks if value is classified as a String primitive or object. + * + * @param value The value to check. + * @return Returns true if value is correctly classified, else false. + */ + isString(value?: any): value is string; + } + + interface LoDashImplicitWrapperBase { + /** + * see _.isString + */ + isString(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * see _.isString + */ + isString(): LoDashExplicitWrapper; + } + + //_.isSymbol + interface LoDashStatic { + /** + * Checks if `value` is classified as a `Symbol` primitive or object. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to check. + * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. + * @example + * + * _.isSymbol(Symbol.iterator); + * // => true + * + * _.isSymbol('abc'); + * // => false + */ + isSymbol(value: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * see _.isSymbol + */ + isSymbol(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * see _.isSymbol + */ + isSymbol(): LoDashExplicitWrapper; + } + + //_.isTypedArray + interface LoDashStatic { + /** + * Checks if value is classified as a typed array. + * + * @param value The value to check. + * @return Returns true if value is correctly classified, else false. + */ + isTypedArray(value: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * see _.isTypedArray + */ + isTypedArray(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * see _.isTypedArray + */ + isTypedArray(): LoDashExplicitWrapper; + } + + //_.isUndefined + interface LoDashStatic { + /** + * Checks if value is undefined. + * + * @param value The value to check. + * @return Returns true if value is undefined, else false. + */ + isUndefined(value: any): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * see _.isUndefined + */ + isUndefined(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * see _.isUndefined + */ + isUndefined(): LoDashExplicitWrapper; + } + + //_.isWeakMap + interface LoDashStatic { + /** + * Checks if value is classified as a WeakMap object. + * + * @param value The value to check. + * @returns Returns true if value is correctly classified, else false. + */ + isWeakMap(value?: any): value is WeakMap; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isSet + */ + isWeakMap(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isSet + */ + isWeakMap(): LoDashExplicitWrapper; + } + + //_.isWeakSet + interface LoDashStatic { + /** + * Checks if value is classified as a WeakSet object. + * + * @param value The value to check. + * @returns Returns true if value is correctly classified, else false. + */ + isWeakSet(value?: any): value is WeakSet; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.isWeakSet + */ + isWeakSet(): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.isWeakSet + */ + isWeakSet(): LoDashExplicitWrapper; + } + + //_.lt + interface LoDashStatic { + /** + * Checks if value is less than other. + * + * @param value The value to compare. + * @param other The other value to compare. + * @return Returns true if value is less than other, else false. + */ + lt( + value: any, + other: any + ): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.lt + */ + lt(other: any): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.lt + */ + lt(other: any): LoDashExplicitWrapper; + } + + //_.lte + interface LoDashStatic { + /** + * Checks if value is less than or equal to other. + * + * @param value The value to compare. + * @param other The other value to compare. + * @return Returns true if value is less than or equal to other, else false. + */ + lte( + value: any, + other: any + ): boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.lte + */ + lte(other: any): boolean; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.lte + */ + lte(other: any): LoDashExplicitWrapper; + } + + //_.toArray + interface LoDashStatic { + /** + * Converts value to an array. + * + * @param value The value to convert. + * @return Returns the converted array. + */ + toArray(value: List|Dictionary|NumericDictionary): T[]; + + /** + * @see _.toArray + */ + toArray(value: TValue): TResult[]; + + /** + * @see _.toArray + */ + toArray(value?: any): TResult[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.toArray + */ + toArray(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.toArray + */ + toArray(): LoDashImplicitArrayWrapper; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.toArray + */ + toArray(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.toArray + */ + toArray(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.toArray + */ + toArray(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.toArray + */ + toArray(): LoDashExplicitArrayWrapper; + } + + //_.toPlainObject + interface LoDashStatic { + /** + * Converts value to a plain object flattening inherited enumerable properties of value to own properties + * of the plain object. + * + * @param value The value to convert. + * @return Returns the converted plain object. + */ + toPlainObject(value?: any): TResult; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.toPlainObject + */ + toPlainObject(): LoDashImplicitObjectWrapper; + } + + //_.toInteger + interface LoDashStatic { + /** + * Converts `value` to an integer. + * + * **Note:** This function is loosely based on [`ToInteger`](http://www.ecma-international.org/ecma-262/6.0/#sec-tointeger). + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toInteger(3); + * // => 3 + * + * _.toInteger(Number.MIN_VALUE); + * // => 0 + * + * _.toInteger(Infinity); + * // => 1.7976931348623157e+308 + * + * _.toInteger('3'); + * // => 3 + */ + toInteger(value: any): number; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.toInteger + */ + toInteger(): LoDashImplicitWrapper; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.toInteger + */ + toInteger(): LoDashExplicitWrapper; + } + + //_.toLength + interface LoDashStatic { + /** + * Converts `value` to an integer suitable for use as the length of an + * array-like object. + * + * **Note:** This method is based on [`ToLength`](http://ecma-international.org/ecma-262/6.0/#sec-tolength). + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to convert. + * @return {number} Returns the converted integer. + * @example + * + * _.toLength(3); + * // => 3 + * + * _.toLength(Number.MIN_VALUE); + * // => 0 + * + * _.toLength(Infinity); + * // => 4294967295 + * + * _.toLength('3'); + * // => 3 + */ + toLength(value: any): number; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.toLength + */ + toLength(): LoDashImplicitWrapper; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.toLength + */ + toLength(): LoDashExplicitWrapper; + } + + //_.toNumber + interface LoDashStatic { + /** + * Converts `value` to a number. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to process. + * @returns {number} Returns the number. + * @example + * + * _.toNumber(3); + * // => 3 + * + * _.toNumber(Number.MIN_VALUE); + * // => 5e-324 + * + * _.toNumber(Infinity); + * // => Infinity + * + * _.toNumber('3'); + * // => 3 + */ + toNumber(value: any): number; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.toNumber + */ + toNumber(): LoDashImplicitWrapper; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.toNumber + */ + toNumber(): LoDashExplicitWrapper; + } + + //_.toSafeInteger + interface LoDashStatic { + /** + * Converts `value` to a safe integer. A safe integer can be compared and + * represented correctly. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to convert. + * @returns {number} Returns the converted integer. + * @example + * + * _.toSafeInteger(3); + * // => 3 + * + * _.toSafeInteger(Number.MIN_VALUE); + * // => 0 + * + * _.toSafeInteger(Infinity); + * // => 9007199254740991 + * + * _.toSafeInteger('3'); + * // => 3 + */ + toSafeInteger(value: any): number; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.toSafeInteger + */ + toSafeInteger(): LoDashImplicitWrapper; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.toSafeInteger + */ + toSafeInteger(): LoDashExplicitWrapper; + } + + //_.toString DUMMY + interface LoDashStatic { + /** + * Converts `value` to a string if it's not one. An empty string is returned + * for `null` and `undefined` values. The sign of `-0` is preserved. + * + * @static + * @memberOf _ + * @category Lang + * @param {*} value The value to process. + * @returns {string} Returns the string. + * @example + * + * _.toString(null); + * // => '' + * + * _.toString(-0); + * // => '-0' + * + * _.toString([1, 2, 3]); + * // => '1,2,3' + */ + toString(value: any): string; + } + + /******** + * Math * + ********/ + + //_.add + interface LoDashStatic { + /** + * Adds two numbers. + * + * @param augend The first number to add. + * @param addend The second number to add. + * @return Returns the sum. + */ + add( + augend: number, + addend: number + ): number; + } + + interface LoDashImplicitWrapper { + /** + * @see _.add + */ + add(addend: number): number; + } + + interface LoDashExplicitWrapper { + /** + * @see _.add + */ + add(addend: number): LoDashExplicitWrapper; + } + + //_.ceil + interface LoDashStatic { + /** + * Calculates n rounded up to precision. + * + * @param n The number to round up. + * @param precision The precision to round up to. + * @return Returns the rounded up number. + */ + ceil( + n: number, + precision?: number + ): number; + } + + interface LoDashImplicitWrapper { + /** + * @see _.ceil + */ + ceil(precision?: number): number; + } + + interface LoDashExplicitWrapper { + /** + * @see _.ceil + */ + ceil(precision?: number): LoDashExplicitWrapper; + } + + //_.floor + interface LoDashStatic { + /** + * Calculates n rounded down to precision. + * + * @param n The number to round down. + * @param precision The precision to round down to. + * @return Returns the rounded down number. + */ + floor( + n: number, + precision?: number + ): number; + } + + interface LoDashImplicitWrapper { + /** + * @see _.floor + */ + floor(precision?: number): number; + } + + interface LoDashExplicitWrapper { + /** + * @see _.floor + */ + floor(precision?: number): LoDashExplicitWrapper; + } + + //_.max + interface LoDashStatic { + /** + * Computes the maximum value of `array`. If `array` is empty or falsey + * `undefined` is returned. + * + * @static + * @memberOf _ + * @category Math + * @param {Array} array The array to iterate over. + * @returns {*} Returns the maximum value. + */ + max( + collection: List + ): T; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.max + */ + max(): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.max + */ + max(): T; + } + + //_.maxBy + interface LoDashStatic { + /** + * This method is like `_.max` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the criterion by which + * the value is ranked. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @category Math + * @param {Array} array The array to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. + * @returns {*} Returns the maximum value. + * @example + * + * var objects = [{ 'n': 1 }, { 'n': 2 }]; + * + * _.maxBy(objects, function(o) { return o.a; }); + * // => { 'n': 2 } + * + * // using the `_.property` iteratee shorthand + * _.maxBy(objects, 'n'); + * // => { 'n': 2 } + */ + maxBy( + collection: List, + iteratee?: ListIterator + ): T; + + /** + * @see _.maxBy + */ + maxBy( + collection: Dictionary, + iteratee?: DictionaryIterator + ): T; + + /** + * @see _.maxBy + */ + maxBy( + collection: List|Dictionary, + iteratee?: string + ): T; + + /** + * @see _.maxBy + */ + maxBy( + collection: List|Dictionary, + whereValue?: TObject + ): T; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.maxBy + */ + maxBy( + iteratee?: ListIterator + ): T; + + /** + * @see _.maxBy + */ + maxBy( + iteratee?: string + ): T; + + /** + * @see _.maxBy + */ + maxBy( + whereValue?: TObject + ): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.maxBy + */ + maxBy( + iteratee?: ListIterator|DictionaryIterator + ): T; + + /** + * @see _.maxBy + */ + maxBy( + iteratee?: string + ): T; + + /** + * @see _.maxBy + */ + maxBy( + whereValue?: TObject + ): T; + } + + //_.mean + interface LoDashStatic { + /** + * Computes the mean of the values in `array`. + * + * @static + * @memberOf _ + * @category Math + * @param {Array} array The array to iterate over. + * @returns {number} Returns the mean. + * @example + * + * _.mean([4, 2, 8, 6]); + * // => 5 + */ + mean( + collection: List + ): number; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.mean + */ + mean(): number; + + /** + * @see _.mean + */ + mean(): number; + } + + //_.min + interface LoDashStatic { + /** + * Computes the minimum value of `array`. If `array` is empty or falsey + * `undefined` is returned. + * + * @static + * @memberOf _ + * @category Math + * @param {Array} array The array to iterate over. + * @returns {*} Returns the minimum value. + */ + min( + collection: List + ): T; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.min + */ + min(): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.min + */ + min(): T; + } + + //_.minBy + interface LoDashStatic { + /** + * This method is like `_.min` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the criterion by which + * the value is ranked. The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @category Math + * @param {Array} array The array to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. + * @returns {*} Returns the minimum value. + * @example + * + * var objects = [{ 'n': 1 }, { 'n': 2 }]; + * + * _.minBy(objects, function(o) { return o.a; }); + * // => { 'n': 1 } + * + * // using the `_.property` iteratee shorthand + * _.minBy(objects, 'n'); + * // => { 'n': 1 } + */ + minBy( + collection: List, + iteratee?: ListIterator + ): T; + + /** + * @see _.minBy + */ + minBy( + collection: Dictionary, + iteratee?: DictionaryIterator + ): T; + + /** + * @see _.minBy + */ + minBy( + collection: List|Dictionary, + iteratee?: string + ): T; + + /** + * @see _.minBy + */ + minBy( + collection: List|Dictionary, + whereValue?: TObject + ): T; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.minBy + */ + minBy( + iteratee?: ListIterator + ): T; + + /** + * @see _.minBy + */ + minBy( + iteratee?: string + ): T; + + /** + * @see _.minBy + */ + minBy( + whereValue?: TObject + ): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.minBy + */ + minBy( + iteratee?: ListIterator|DictionaryIterator + ): T; + + /** + * @see _.minBy + */ + minBy( + iteratee?: string + ): T; + + /** + * @see _.minBy + */ + minBy( + whereValue?: TObject + ): T; + } + + //_.round + interface LoDashStatic { + /** + * Calculates n rounded to precision. + * + * @param n The number to round. + * @param precision The precision to round to. + * @return Returns the rounded number. + */ + round( + n: number, + precision?: number + ): number; + } + + interface LoDashImplicitWrapper { + /** + * @see _.round + */ + round(precision?: number): number; + } + + interface LoDashExplicitWrapper { + /** + * @see _.round + */ + round(precision?: number): LoDashExplicitWrapper; + } + + //_.sum + interface LoDashStatic { + /** + * Computes the sum of the values in `array`. + * + * @static + * @memberOf _ + * @category Math + * @param {Array} array The array to iterate over. + * @returns {number} Returns the sum. + * @example + * + * _.sum([4, 2, 8, 6]); + * // => 20 + */ + sum(collection: List): number; + + /** + * @see _.sum + */ + sum(collection: List|Dictionary): number; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.sum + */ + sum(): number; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.sum + **/ + sum(): number; + + /** + * @see _.sum + */ + sum(): number; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.sum + */ + sum(): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.sum + */ + sum(): LoDashExplicitWrapper; + + /** + * @see _.sum + */ + sum(): LoDashExplicitWrapper; + } + + //_.sumBy + interface LoDashStatic { + /** + * This method is like `_.sum` except that it accepts `iteratee` which is + * invoked for each element in `array` to generate the value to be summed. + * The iteratee is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @category Math + * @param {Array} array The array to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. + * @returns {number} Returns the sum. + * @example + * + * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]; + * + * _.sumBy(objects, function(o) { return o.n; }); + * // => 20 + * + * // using the `_.property` iteratee shorthand + * _.sumBy(objects, 'n'); + * // => 20 + */ + sumBy( + collection: List, + iteratee: ListIterator + ): number; + + /** + * @see _.sumBy + **/ + sumBy( + collection: Dictionary, + iteratee: DictionaryIterator + ): number; + + /** + * @see _.sumBy + */ + sumBy( + collection: List|Dictionary, + iteratee: string + ): number; + + /** + * @see _.sumBy + */ + sumBy(collection: List|Dictionary): number; + + /** + * @see _.sumBy + */ + sumBy(collection: List|Dictionary): number; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.sumBy + */ + sumBy( + iteratee: ListIterator + ): number; + + /** + * @see _.sumBy + */ + sumBy(iteratee: string): number; + + /** + * @see _.sumBy + */ + sumBy(): number; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.sumBy + **/ + sumBy( + iteratee: ListIterator|DictionaryIterator + ): number; + + /** + * @see _.sumBy + */ + sumBy(iteratee: string): number; + + /** + * @see _.sumBy + */ + sumBy(): number; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.sumBy + */ + sumBy( + iteratee: ListIterator + ): LoDashExplicitWrapper; + + /** + * @see _.sumBy + */ + sumBy(iteratee: string): LoDashExplicitWrapper; + + /** + * @see _.sumBy + */ + sumBy(): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.sumBy + */ + sumBy( + iteratee: ListIterator|DictionaryIterator + ): LoDashExplicitWrapper; + + /** + * @see _.sumBy + */ + sumBy(iteratee: string): LoDashExplicitWrapper; + + /** + * @see _.sumBy + */ + sumBy(): LoDashExplicitWrapper; + } + + /********** + * Number * + **********/ + + //_.subtract + interface LoDashStatic { + /** + * Subtract two numbers. + * + * @static + * @memberOf _ + * @category Math + * @param {number} minuend The first number in a subtraction. + * @param {number} subtrahend The second number in a subtraction. + * @returns {number} Returns the difference. + * @example + * + * _.subtract(6, 4); + * // => 2 + */ + subtract( + minuend: number, + subtrahend: number + ): number; + } + + interface LoDashImplicitWrapper { + /** + * @see _.subtract + */ + subtract( + subtrahend: number + ): number; + } + + interface LoDashExplicitWrapper { + /** + * @see _.subtract + */ + subtract( + subtrahend: number + ): LoDashExplicitWrapper; + } + + //_.clamp + interface LoDashStatic { + /** + * Clamps `number` within the inclusive `lower` and `upper` bounds. + * + * @static + * @memberOf _ + * @category Number + * @param {number} number The number to clamp. + * @param {number} [lower] The lower bound. + * @param {number} upper The upper bound. + * @returns {number} Returns the clamped number. + * @example + * + * _.clamp(-10, -5, 5); + * // => -5 + * + * _.clamp(10, -5, 5); + * // => 5 + */ + clamp( + number: number, + lower: number, + upper: number + ): number; + } + + interface LoDashImplicitWrapper { + /** + * @see _.clamp + */ + clamp( + lower: number, + upper: number + ): number; + } + + interface LoDashExplicitWrapper { + /** + * @see _.clamp + */ + clamp( + lower: number, + upper: number + ): LoDashExplicitWrapper; + } + + //_.inRange + interface LoDashStatic { + /** + * Checks if n is between start and up to but not including, end. If end is not specified it’s set to start + * with start then set to 0. + * + * @param n The number to check. + * @param start The start of the range. + * @param end The end of the range. + * @return Returns true if n is in the range, else false. + */ + inRange( + n: number, + start: number, + end: number + ): boolean; + + + /** + * @see _.inRange + */ + inRange( + n: number, + end: number + ): boolean; + } + + interface LoDashImplicitWrapper { + /** + * @see _.inRange + */ + inRange( + start: number, + end: number + ): boolean; + + /** + * @see _.inRange + */ + inRange(end: number): boolean; + } + + interface LoDashExplicitWrapper { + /** + * @see _.inRange + */ + inRange( + start: number, + end: number + ): LoDashExplicitWrapper; + + /** + * @see _.inRange + */ + inRange(end: number): LoDashExplicitWrapper; + } + + //_.random + interface LoDashStatic { + /** + * Produces a random number between min and max (inclusive). If only one argument is provided a number between + * 0 and the given number is returned. If floating is true, or either min or max are floats, a floating-point + * number is returned instead of an integer. + * + * @param min The minimum possible value. + * @param max The maximum possible value. + * @param floating Specify returning a floating-point number. + * @return Returns the random number. + */ + random( + min?: number, + max?: number, + floating?: boolean + ): number; + + /** + * @see _.random + */ + random( + min?: number, + floating?: boolean + ): number; + + /** + * @see _.random + */ + random(floating?: boolean): number; + } + + interface LoDashImplicitWrapper { + /** + * @see _.random + */ + random( + max?: number, + floating?: boolean + ): number; + + /** + * @see _.random + */ + random(floating?: boolean): number; + } + + interface LoDashExplicitWrapper { + /** + * @see _.random + */ + random( + max?: number, + floating?: boolean + ): LoDashExplicitWrapper; + + /** + * @see _.random + */ + random(floating?: boolean): LoDashExplicitWrapper; + } + + /********** + * Object * + **********/ + + //_.assign + interface LoDashStatic { + /** + * Assigns own enumerable properties of source objects to the destination + * object. Source objects are applied from left to right. Subsequent sources + * overwrite property assignments of previous sources. + * + * **Note:** This method mutates `object` and is loosely based on + * [`Object.assign`](https://mdn.io/Object/assign). + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @example + * + * function Foo() { + * this.c = 3; + * } + * + * function Bar() { + * this.e = 5; + * } + * + * Foo.prototype.d = 4; + * Bar.prototype.f = 6; + * + * _.assign({ 'a': 1 }, new Foo, new Bar); + * // => { 'a': 1, 'c': 3, 'e': 5 } + */ + assign( + object: TObject, + source: TSource + ): TResult; + + /** + * @see assign + */ + assign( + object: TObject, + source1: TSource1, + source2: TSource2 + ): TResult; + + /** + * @see assign + */ + assign( + object: TObject, + source1: TSource1, + source2: TSource2, + source3: TSource3 + ): TResult; + + /** + * @see assign + */ + assign + ( + object: TObject, + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4 + ): TResult; + + /** + * @see _.assign + */ + assign(object: TObject): TObject; + + /** + * @see _.assign + */ + assign( + object: TObject, ...otherArgs: any[] + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.assign + */ + assign( + source: TSource + ): LoDashImplicitObjectWrapper; + + /** + * @see assign + */ + assign( + source1: TSource1, + source2: TSource2 + ): LoDashImplicitObjectWrapper; + + /** + * @see assign + */ + assign( + source1: TSource1, + source2: TSource2, + source3: TSource3 + ): LoDashImplicitObjectWrapper; + + /** + * @see assign + */ + assign( + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4 + ): LoDashImplicitObjectWrapper; + + /** + * @see _.assign + */ + assign(): LoDashImplicitObjectWrapper; + + /** + * @see _.assign + */ + assign(...otherArgs: any[]): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.assign + */ + assign( + source: TSource + ): LoDashExplicitObjectWrapper; + + /** + * @see assign + */ + assign( + source1: TSource1, + source2: TSource2 + ): LoDashExplicitObjectWrapper; + + /** + * @see assign + */ + assign( + source1: TSource1, + source2: TSource2, + source3: TSource3 + ): LoDashExplicitObjectWrapper; + + /** + * @see assign + */ + assign( + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4 + ): LoDashExplicitObjectWrapper; + + /** + * @see _.assign + */ + assign(): LoDashExplicitObjectWrapper; + + /** + * @see _.assign + */ + assign(...otherArgs: any[]): LoDashExplicitObjectWrapper; + } + + //_.assignWith + interface AssignCustomizer { + (objectValue: any, sourceValue: any, key?: string, object?: {}, source?: {}): any; + } + + interface LoDashStatic { + /** + * This method is like `_.assign` except that it accepts `customizer` which + * is invoked to produce the assigned values. If `customizer` returns `undefined` + * assignment is handled by the method instead. The `customizer` is invoked + * with five arguments: (objValue, srcValue, key, object, source). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * function customizer(objValue, srcValue) { + * return _.isUndefined(objValue) ? srcValue : objValue; + * } + * + * var defaults = _.partialRight(_.assignWith, customizer); + * + * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + assignWith( + object: TObject, + source: TSource, + customizer: AssignCustomizer + ): TResult; + + /** + * @see assignWith + */ + assignWith( + object: TObject, + source1: TSource1, + source2: TSource2, + customizer: AssignCustomizer + ): TResult; + + /** + * @see assignWith + */ + assignWith( + object: TObject, + source1: TSource1, + source2: TSource2, + source3: TSource3, + customizer: AssignCustomizer + ): TResult; + + /** + * @see assignWith + */ + assignWith + ( + object: TObject, + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4, + customizer: AssignCustomizer + ): TResult; + + /** + * @see _.assignWith + */ + assignWith(object: TObject): TObject; + + /** + * @see _.assignWith + */ + assignWith( + object: TObject, ...otherArgs: any[] + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.assignWith + */ + assignWith( + source: TSource, + customizer: AssignCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see assignWith + */ + assignWith( + source1: TSource1, + source2: TSource2, + customizer: AssignCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see assignWith + */ + assignWith( + source1: TSource1, + source2: TSource2, + source3: TSource3, + customizer: AssignCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see assignWith + */ + assignWith( + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4, + customizer: AssignCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see _.assignWith + */ + assignWith(): LoDashImplicitObjectWrapper; + + /** + * @see _.assignWith + */ + assignWith(...otherArgs: any[]): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.assignWith + */ + assignWith( + source: TSource, + customizer: AssignCustomizer + ): LoDashExplicitObjectWrapper; + + /** + * @see assignWith + */ + assignWith( + source1: TSource1, + source2: TSource2, + customizer: AssignCustomizer + ): LoDashExplicitObjectWrapper; + + /** + * @see assignWith + */ + assignWith( + source1: TSource1, + source2: TSource2, + source3: TSource3, + customizer: AssignCustomizer + ): LoDashExplicitObjectWrapper; + + /** + * @see assignWith + */ + assignWith( + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4, + customizer: AssignCustomizer + ): LoDashExplicitObjectWrapper; + + /** + * @see _.assignWith + */ + assignWith(): LoDashExplicitObjectWrapper; + + /** + * @see _.assignWith + */ + assignWith(...otherArgs: any[]): LoDashExplicitObjectWrapper; + } + + //_.assignIn + interface LoDashStatic { + /** + * This method is like `_.assign` except that it iterates over own and + * inherited source properties. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @alias extend + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @example + * + * function Foo() { + * this.b = 2; + * } + * + * function Bar() { + * this.d = 4; + * } + * + * Foo.prototype.c = 3; + * Bar.prototype.e = 5; + * + * _.assignIn({ 'a': 1 }, new Foo, new Bar); + * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5 } + */ + assignIn( + object: TObject, + source: TSource + ): TResult; + + /** + * @see assignIn + */ + assignIn( + object: TObject, + source1: TSource1, + source2: TSource2 + ): TResult; + + /** + * @see assignIn + */ + assignIn( + object: TObject, + source1: TSource1, + source2: TSource2, + source3: TSource3 + ): TResult; + + /** + * @see assignIn + */ + assignIn + ( + object: TObject, + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4 + ): TResult; + + /** + * @see _.assignIn + */ + assignIn(object: TObject): TObject; + + /** + * @see _.assignIn + */ + assignIn( + object: TObject, ...otherArgs: any[] + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.assignIn + */ + assignIn( + source: TSource + ): LoDashImplicitObjectWrapper; + + /** + * @see assignIn + */ + assignIn( + source1: TSource1, + source2: TSource2 + ): LoDashImplicitObjectWrapper; + + /** + * @see assignIn + */ + assignIn( + source1: TSource1, + source2: TSource2, + source3: TSource3 + ): LoDashImplicitObjectWrapper; + + /** + * @see assignIn + */ + assignIn( + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4 + ): LoDashImplicitObjectWrapper; + + /** + * @see _.assignIn + */ + assignIn(): LoDashImplicitObjectWrapper; + + /** + * @see _.assignIn + */ + assignIn(...otherArgs: any[]): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.assignIn + */ + assignIn( + source: TSource + ): LoDashExplicitObjectWrapper; + + /** + * @see assignIn + */ + assignIn( + source1: TSource1, + source2: TSource2 + ): LoDashExplicitObjectWrapper; + + /** + * @see assignIn + */ + assignIn( + source1: TSource1, + source2: TSource2, + source3: TSource3 + ): LoDashExplicitObjectWrapper; + + /** + * @see assignIn + */ + assignIn( + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4 + ): LoDashExplicitObjectWrapper; + + /** + * @see _.assignIn + */ + assignIn(): LoDashExplicitObjectWrapper; + + /** + * @see _.assignIn + */ + assignIn(...otherArgs: any[]): LoDashExplicitObjectWrapper; + } + + //_.assignInWith + interface AssignCustomizer { + (objectValue: any, sourceValue: any, key?: string, object?: {}, source?: {}): any; + } + + interface LoDashStatic { + /** + * This method is like `_.assignIn` except that it accepts `customizer` which + * is invoked to produce the assigned values. If `customizer` returns `undefined` + * assignment is handled by the method instead. The `customizer` is invoked + * with five arguments: (objValue, srcValue, key, object, source). + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @alias extendWith + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} [customizer] The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * function customizer(objValue, srcValue) { + * return _.isUndefined(objValue) ? srcValue : objValue; + * } + * + * var defaults = _.partialRight(_.assignInWith, customizer); + * + * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); + * // => { 'a': 1, 'b': 2 } + */ + assignInWith( + object: TObject, + source: TSource, + customizer: AssignCustomizer + ): TResult; + + /** + * @see assignInWith + */ + assignInWith( + object: TObject, + source1: TSource1, + source2: TSource2, + customizer: AssignCustomizer + ): TResult; + + /** + * @see assignInWith + */ + assignInWith( + object: TObject, + source1: TSource1, + source2: TSource2, + source3: TSource3, + customizer: AssignCustomizer + ): TResult; + + /** + * @see assignInWith + */ + assignInWith + ( + object: TObject, + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4, + customizer: AssignCustomizer + ): TResult; + + /** + * @see _.assignInWith + */ + assignInWith(object: TObject): TObject; + + /** + * @see _.assignInWith + */ + assignInWith( + object: TObject, ...otherArgs: any[] + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.assignInWith + */ + assignInWith( + source: TSource, + customizer: AssignCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see assignInWith + */ + assignInWith( + source1: TSource1, + source2: TSource2, + customizer: AssignCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see assignInWith + */ + assignInWith( + source1: TSource1, + source2: TSource2, + source3: TSource3, + customizer: AssignCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see assignInWith + */ + assignInWith( + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4, + customizer: AssignCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see _.assignInWith + */ + assignInWith(): LoDashImplicitObjectWrapper; + + /** + * @see _.assignInWith + */ + assignInWith(...otherArgs: any[]): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.assignInWith + */ + assignInWith( + source: TSource, + customizer: AssignCustomizer + ): LoDashExplicitObjectWrapper; + + /** + * @see assignInWith + */ + assignInWith( + source1: TSource1, + source2: TSource2, + customizer: AssignCustomizer + ): LoDashExplicitObjectWrapper; + + /** + * @see assignInWith + */ + assignInWith( + source1: TSource1, + source2: TSource2, + source3: TSource3, + customizer: AssignCustomizer + ): LoDashExplicitObjectWrapper; + + /** + * @see assignInWith + */ + assignInWith( + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4, + customizer: AssignCustomizer + ): LoDashExplicitObjectWrapper; + + /** + * @see _.assignInWith + */ + assignInWith(): LoDashExplicitObjectWrapper; + + /** + * @see _.assignInWith + */ + assignInWith(...otherArgs: any[]): LoDashExplicitObjectWrapper; + } + + //_.create + interface LoDashStatic { + /** + * Creates an object that inherits from the given prototype object. If a properties object is provided its own + * enumerable properties are assigned to the created object. + * + * @param prototype The object to inherit from. + * @param properties The properties to assign to the object. + * @return Returns the new object. + */ + create( + prototype: T, + properties?: U + ): T & U; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.create + */ + create(properties?: U): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.create + */ + create(properties?: U): LoDashExplicitObjectWrapper; + } + + //_.defaults + interface LoDashStatic { + /** + * Assigns own enumerable properties of source object(s) to the destination object for all destination + * properties that resolve to undefined. Once a property is set, additional values of the same property are + * ignored. + * + * Note: This method mutates object. + * + * @param object The destination object. + * @param sources The source objects. + * @return The destination object. + */ + defaults( + object: Obj, + ...sources: {}[] + ): TResult; + + /** + * @see _.defaults + */ + defaults( + object: Obj, + source1: S1, + ...sources: {}[] + ): TResult; + + /** + * @see _.defaults + */ + defaults( + object: Obj, + source1: S1, + source2: S2, + ...sources: {}[] + ): TResult; + + /** + * @see _.defaults + */ + defaults( + object: Obj, + source1: S1, + source2: S2, + source3: S3, + ...sources: {}[] + ): TResult; + + /** + * @see _.defaults + */ + defaults( + object: Obj, + source1: S1, + source2: S2, + source3: S3, + source4: S4, + ...sources: {}[] + ): TResult; + + /** + * @see _.defaults + */ + defaults( + object: {}, + ...sources: {}[] + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.defaults + */ + defaults( + source1: S1, + ...sources: {}[] + ): LoDashImplicitObjectWrapper; + + /** + * @see _.defaults + */ + defaults( + source1: S1, + source2: S2, + ...sources: {}[] + ): LoDashImplicitObjectWrapper; + + /** + * @see _.defaults + */ + defaults( + source1: S1, + source2: S2, + source3: S3, + ...sources: {}[] + ): LoDashImplicitObjectWrapper; + + /** + * @see _.defaults + */ + defaults( + source1: S1, + source2: S2, + source3: S3, + source4: S4, + ...sources: {}[] + ): LoDashImplicitObjectWrapper; + + /** + * @see _.defaults + */ + defaults(): LoDashImplicitObjectWrapper; + + /** + * @see _.defaults + */ + defaults(...sources: {}[]): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.defaults + */ + defaults( + source1: S1, + ...sources: {}[] + ): LoDashExplicitObjectWrapper; + + /** + * @see _.defaults + */ + defaults( + source1: S1, + source2: S2, + ...sources: {}[] + ): LoDashExplicitObjectWrapper; + + /** + * @see _.defaults + */ + defaults( + source1: S1, + source2: S2, + source3: S3, + ...sources: {}[] + ): LoDashExplicitObjectWrapper; + + /** + * @see _.defaults + */ + defaults( + source1: S1, + source2: S2, + source3: S3, + source4: S4, + ...sources: {}[] + ): LoDashExplicitObjectWrapper; + + /** + * @see _.defaults + */ + defaults(): LoDashExplicitObjectWrapper; + + /** + * @see _.defaults + */ + defaults(...sources: {}[]): LoDashExplicitObjectWrapper; + } + + //_.defaultsDeep + interface LoDashStatic { + /** + * This method is like _.defaults except that it recursively assigns default properties. + * @param object The destination object. + * @param sources The source objects. + * @return Returns object. + **/ + defaultsDeep( + object: T, + ...sources: any[]): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.defaultsDeep + **/ + defaultsDeep(...sources: any[]): LoDashImplicitObjectWrapper + } + + //_.extend + interface LoDashStatic { + /** + * @see assign + */ + extend( + object: TObject, + source: TSource, + customizer?: AssignCustomizer + ): TResult; + + /** + * @see assign + */ + extend( + object: TObject, + source1: TSource1, + source2: TSource2, + customizer?: AssignCustomizer + ): TResult; + + /** + * @see assign + */ + extend( + object: TObject, + source1: TSource1, + source2: TSource2, + source3: TSource3, + customizer?: AssignCustomizer + ): TResult; + + /** + * @see assign + */ + extend + ( + object: TObject, + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4, + customizer?: AssignCustomizer + ): TResult; + + /** + * @see _.assign + */ + extend(object: TObject): TObject; + + /** + * @see _.assign + */ + extend( + object: TObject, ...otherArgs: any[] + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.assign + */ + extend( + source: TSource, + customizer?: AssignCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see assign + */ + extend( + source1: TSource1, + source2: TSource2, + customizer?: AssignCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see assign + */ + extend( + source1: TSource1, + source2: TSource2, + source3: TSource3, + customizer?: AssignCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see assign + */ + extend( + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4, + customizer?: AssignCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see _.assign + */ + extend(): LoDashImplicitObjectWrapper; + + /** + * @see _.assign + */ + extend(...otherArgs: any[]): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.assign + */ + extend( + source: TSource, + customizer?: AssignCustomizer + ): LoDashExplicitObjectWrapper; + + /** + * @see assign + */ + extend( + source1: TSource1, + source2: TSource2, + customizer?: AssignCustomizer + ): LoDashExplicitObjectWrapper; + + /** + * @see assign + */ + extend( + source1: TSource1, + source2: TSource2, + source3: TSource3, + customizer?: AssignCustomizer + ): LoDashExplicitObjectWrapper; + + /** + * @see assign + */ + extend( + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4, + customizer?: AssignCustomizer + ): LoDashExplicitObjectWrapper; + + /** + * @see _.assign + */ + extend(): LoDashExplicitObjectWrapper; + + /** + * @see _.assign + */ + extend(...otherArgs: any[]): LoDashExplicitObjectWrapper; + } + + //_.findKey + interface LoDashStatic { + /** + * This method is like _.find except that it returns the key of the first element predicate returns truthy for + * instead of the element itself. + * + * If a property name is provided for predicate the created _.property style callback returns the property + * value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for predicate the created _.matches style callback returns true for elements that + * have the properties of the given object, else false. + * + * @param object The object to search. + * @param predicate The function invoked per iteration. + * @param thisArg The this binding of predicate. + * @return Returns the key of the matched element, else undefined. + */ + findKey( + object: TObject, + predicate?: DictionaryIterator + ): string; + + /** + * @see _.findKey + */ + findKey( + object: TObject, + predicate?: ObjectIterator + ): string; + + /** + * @see _.findKey + */ + findKey( + object: TObject, + predicate?: string + ): string; + + /** + * @see _.findKey + */ + findKey, TObject>( + object: TObject, + predicate?: TWhere + ): string; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.findKey + */ + findKey( + predicate?: DictionaryIterator + ): string; + + /** + * @see _.findKey + */ + findKey( + predicate?: ObjectIterator + ): string; + + /** + * @see _.findKey + */ + findKey( + predicate?: string + ): string; + + /** + * @see _.findKey + */ + findKey>( + predicate?: TWhere + ): string; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.findKey + */ + findKey( + predicate?: DictionaryIterator + ): LoDashExplicitWrapper; + + /** + * @see _.findKey + */ + findKey( + predicate?: ObjectIterator + ): LoDashExplicitWrapper; + + /** + * @see _.findKey + */ + findKey( + predicate?: string + ): LoDashExplicitWrapper; + + /** + * @see _.findKey + */ + findKey>( + predicate?: TWhere + ): LoDashExplicitWrapper; + } + + //_.findLastKey + interface LoDashStatic { + /** + * This method is like _.findKey except that it iterates over elements of a collection in the opposite order. + * + * If a property name is provided for predicate the created _.property style callback returns the property + * value of the given element. + * + * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for + * elements that have a matching property value, else false. + * + * If an object is provided for predicate the created _.matches style callback returns true for elements that + * have the properties of the given object, else false. + * + * @param object The object to search. + * @param predicate The function invoked per iteration. + * @param thisArg The this binding of predicate. + * @return Returns the key of the matched element, else undefined. + */ + findLastKey( + object: TObject, + predicate?: DictionaryIterator + ): string; + + /** + * @see _.findLastKey + */ + findLastKey( + object: TObject, + predicate?: ObjectIterator + ): string; + + /** + * @see _.findLastKey + */ + findLastKey( + object: TObject, + predicate?: string + ): string; + + /** + * @see _.findLastKey + */ + findLastKey, TObject>( + object: TObject, + predicate?: TWhere + ): string; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.findLastKey + */ + findLastKey( + predicate?: DictionaryIterator + ): string; + + /** + * @see _.findLastKey + */ + findLastKey( + predicate?: ObjectIterator + ): string; + + /** + * @see _.findLastKey + */ + findLastKey( + predicate?: string + ): string; + + /** + * @see _.findLastKey + */ + findLastKey>( + predicate?: TWhere + ): string; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.findLastKey + */ + findLastKey( + predicate?: DictionaryIterator + ): LoDashExplicitWrapper; + + /** + * @see _.findLastKey + */ + findLastKey( + predicate?: ObjectIterator + ): LoDashExplicitWrapper; + + /** + * @see _.findLastKey + */ + findLastKey( + predicate?: string + ): LoDashExplicitWrapper; + + /** + * @see _.findLastKey + */ + findLastKey>( + predicate?: TWhere + ): LoDashExplicitWrapper; + } + + //_.forIn + interface LoDashStatic { + /** + * Iterates over own and inherited enumerable properties of an object invoking iteratee for each property. The + * iteratee is bound to thisArg and invoked with three arguments: (value, key, object). Iteratee functions may + * exit iteration early by explicitly returning false. + * + * @param object The object to iterate over. + * @param iteratee The function invoked per iteration. + * @param thisArg The this binding of iteratee. + * @return Returns object. + */ + forIn( + object: Dictionary, + iteratee?: DictionaryIterator + ): Dictionary; + + /** + * @see _.forIn + */ + forIn( + object: T, + iteratee?: ObjectIterator + ): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.forIn + */ + forIn( + iteratee?: DictionaryIterator + ): _.LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.forIn + */ + forIn( + iteratee?: DictionaryIterator + ): _.LoDashExplicitObjectWrapper; + } + + //_.forInRight + interface LoDashStatic { + /** + * This method is like _.forIn except that it iterates over properties of object in the opposite order. + * + * @param object The object to iterate over. + * @param iteratee The function invoked per iteration. + * @param thisArg The this binding of iteratee. + * @return Returns object. + */ + forInRight( + object: Dictionary, + iteratee?: DictionaryIterator + ): Dictionary; + + /** + * @see _.forInRight + */ + forInRight( + object: T, + iteratee?: ObjectIterator + ): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.forInRight + */ + forInRight( + iteratee?: DictionaryIterator + ): _.LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.forInRight + */ + forInRight( + iteratee?: DictionaryIterator + ): _.LoDashExplicitObjectWrapper; + } + + //_.forOwn + interface LoDashStatic { + /** + * Iterates over own enumerable properties of an object invoking iteratee for each property. The iteratee is + * bound to thisArg and invoked with three arguments: (value, key, object). Iteratee functions may exit + * iteration early by explicitly returning false. + * + * @param object The object to iterate over. + * @param iteratee The function invoked per iteration. + * @param thisArg The this binding of iteratee. + * @return Returns object. + */ + forOwn( + object: Dictionary, + iteratee?: DictionaryIterator + ): Dictionary; + + /** + * @see _.forOwn + */ + forOwn( + object: T, + iteratee?: ObjectIterator + ): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.forOwn + */ + forOwn( + iteratee?: DictionaryIterator + ): _.LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.forOwn + */ + forOwn( + iteratee?: DictionaryIterator + ): _.LoDashExplicitObjectWrapper; + } + + //_.forOwnRight + interface LoDashStatic { + /** + * This method is like _.forOwn except that it iterates over properties of object in the opposite order. + * + * @param object The object to iterate over. + * @param iteratee The function invoked per iteration. + * @param thisArg The this binding of iteratee. + * @return Returns object. + */ + forOwnRight( + object: Dictionary, + iteratee?: DictionaryIterator + ): Dictionary; + + /** + * @see _.forOwnRight + */ + forOwnRight( + object: T, + iteratee?: ObjectIterator + ): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.forOwnRight + */ + forOwnRight( + iteratee?: DictionaryIterator + ): _.LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.forOwnRight + */ + forOwnRight( + iteratee?: DictionaryIterator + ): _.LoDashExplicitObjectWrapper; + } + + //_.functions + interface LoDashStatic { + /** + * Creates an array of function property names from own enumerable properties + * of `object`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the new array of property names. + * @example + * + * function Foo() { + * this.a = _.constant('a'); + * this.b = _.constant('b'); + * } + * + * Foo.prototype.c = _.constant('c'); + * + * _.functions(new Foo); + * // => ['a', 'b'] + */ + functions(object: any): string[]; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.functions + */ + functions(): _.LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.functions + */ + functions(): _.LoDashExplicitArrayWrapper; + } + + //_.functionsIn + interface LoDashStatic { + /** + * Creates an array of function property names from own and inherited + * enumerable properties of `object`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to inspect. + * @returns {Array} Returns the new array of property names. + * @example + * + * function Foo() { + * this.a = _.constant('a'); + * this.b = _.constant('b'); + * } + * + * Foo.prototype.c = _.constant('c'); + * + * _.functionsIn(new Foo); + * // => ['a', 'b', 'c'] + */ + functionsIn(object: any): string[]; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.functionsIn + */ + functionsIn(): _.LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.functionsIn + */ + functionsIn(): _.LoDashExplicitArrayWrapper; + } + + //_.get + interface LoDashStatic { + /** + * Gets the property value at path of object. If the resolved value is undefined the defaultValue is used + * in its place. + * + * @param object The object to query. + * @param path The path of the property to get. + * @param defaultValue The value returned if the resolved value is undefined. + * @return Returns the resolved value. + */ + get( + object: TObject, + path: StringRepresentable|StringRepresentable[], + defaultValue?: TResult + ): TResult; + + /** + * @see _.get + */ + get( + object: any, + path: StringRepresentable|StringRepresentable[], + defaultValue?: TResult + ): TResult; + } + + interface LoDashImplicitWrapper { + /** + * @see _.get + */ + get( + path: StringRepresentable|StringRepresentable[], + defaultValue?: TResult + ): TResult; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.get + */ + get( + path: StringRepresentable|StringRepresentable[], + defaultValue?: TResult + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.get + */ + get( + path: StringRepresentable|StringRepresentable[], + defaultValue?: TResult + ): TResult; + } + + interface LoDashExplicitWrapper { + /** + * @see _.get + */ + get( + path: StringRepresentable|StringRepresentable[], + defaultValue?: any + ): TResultWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.get + */ + get( + path: StringRepresentable|StringRepresentable[], + defaultValue?: any + ): TResultWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.get + */ + get( + path: StringRepresentable|StringRepresentable[], + defaultValue?: any + ): TResultWrapper; + } + + //_.has + interface LoDashStatic { + /** + * Checks if `path` is a direct property of `object`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = { 'a': { 'b': { 'c': 3 } } }; + * var other = _.create({ 'a': _.create({ 'b': _.create({ 'c': 3 }) }) }); + * + * _.has(object, 'a'); + * // => true + * + * _.has(object, 'a.b.c'); + * // => true + * + * _.has(object, ['a', 'b', 'c']); + * // => true + * + * _.has(other, 'a'); + * // => false + */ + has( + object: T, + path: StringRepresentable|StringRepresentable[] + ): boolean; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.has + */ + has(path: StringRepresentable|StringRepresentable[]): boolean; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.has + */ + has(path: StringRepresentable|StringRepresentable[]): LoDashExplicitWrapper; + } + + //_.hasIn + interface LoDashStatic { + /** + * Checks if `path` is a direct or inherited property of `object`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The object to query. + * @param {Array|string} path The path to check. + * @returns {boolean} Returns `true` if `path` exists, else `false`. + * @example + * + * var object = _.create({ 'a': _.create({ 'b': _.create({ 'c': 3 }) }) }); + * + * _.hasIn(object, 'a'); + * // => true + * + * _.hasIn(object, 'a.b.c'); + * // => true + * + * _.hasIn(object, ['a', 'b', 'c']); + * // => true + * + * _.hasIn(object, 'b'); + * // => false + */ + hasIn( + object: T, + path: StringRepresentable|StringRepresentable[] + ): boolean; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.hasIn + */ + hasIn(path: StringRepresentable|StringRepresentable[]): boolean; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.hasIn + */ + hasIn(path: StringRepresentable|StringRepresentable[]): LoDashExplicitWrapper; + } + + //_.invert + interface LoDashStatic { + /** + * Creates an object composed of the inverted keys and values of object. If object contains duplicate values, + * subsequent values overwrite property assignments of previous values unless multiValue is true. + * + * @param object The object to invert. + * @param multiValue Allow multiple values per key. + * @return Returns the new inverted object. + */ + invert( + object: T, + multiValue?: boolean + ): TResult; + + /** + * @see _.invert + */ + invert( + object: Object, + multiValue?: boolean + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.invert + */ + invert(multiValue?: boolean): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.invert + */ + invert(multiValue?: boolean): LoDashExplicitObjectWrapper; + } + + //_.inverBy + interface InvertByIterator { + (value: T): any; + } + + interface LoDashStatic { + /** + * This method is like _.invert except that the inverted object is generated from the results of running each + * element of object through iteratee. The corresponding inverted value of each inverted key is an array of + * keys responsible for generating the inverted value. The iteratee is invoked with one argument: (value). + * + * @param object The object to invert. + * @param interatee The iteratee invoked per element. + * @return Returns the new inverted object. + */ + invertBy( + object: Object, + interatee?: InvertByIterator|string + ): Dictionary; + + /** + * @see _.invertBy + */ + invertBy( + object: _.Dictionary|_.NumericDictionary, + interatee?: InvertByIterator|string + ): Dictionary; + + /** + * @see _.invertBy + */ + invertBy( + object: Object, + interatee?: W + ): Dictionary; + + /** + * @see _.invertBy + */ + invertBy( + object: _.Dictionary, + interatee?: W + ): Dictionary; + } + + interface LoDashImplicitWrapper { + /** + * @see _.invertBy + */ + invertBy( + interatee?: InvertByIterator + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.invertBy + */ + invertBy( + interatee?: InvertByIterator|string + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.invertBy + */ + invertBy( + interatee?: W + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.invertBy + */ + invertBy( + interatee?: InvertByIterator|string + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.invertBy + */ + invertBy( + interatee?: W + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashExplicitWrapper { + /** + * @see _.invertBy + */ + invertBy( + interatee?: InvertByIterator + ): LoDashExplicitObjectWrapper>; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.invertBy + */ + invertBy( + interatee?: InvertByIterator|string + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.invertBy + */ + invertBy( + interatee?: W + ): LoDashExplicitObjectWrapper>; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.invertBy + */ + invertBy( + interatee?: InvertByIterator|string + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.invertBy + */ + invertBy( + interatee?: W + ): LoDashExplicitObjectWrapper>; + } + + //_.keys + interface LoDashStatic { + /** + * Creates an array of the own enumerable property names of object. + * + * Note: Non-object values are coerced to objects. See the ES spec for more details. + * + * @param object The object to query. + * @return Returns the array of property names. + */ + keys(object?: any): string[]; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.keys + */ + keys(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.keys + */ + keys(): LoDashExplicitArrayWrapper; + } + + //_.keysIn + interface LoDashStatic { + /** + * Creates an array of the own and inherited enumerable property names of object. + * + * Note: Non-object values are coerced to objects. + * + * @param object The object to query. + * @return An array of property names. + */ + keysIn(object?: any): string[]; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.keysIn + */ + keysIn(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.keysIn + */ + keysIn(): LoDashExplicitArrayWrapper; + } + + //_.mapKeys + interface LoDashStatic { + /** + * The opposite of _.mapValues; this method creates an object with the same values as object and keys generated + * by running each own enumerable property of object through iteratee. + * + * @param object The object to iterate over. + * @param iteratee The function invoked per iteration. + * @param thisArg The this binding of iteratee. + * @return Returns the new mapped object. + */ + mapKeys( + object: List, + iteratee?: ListIterator + ): Dictionary; + + /** + * @see _.mapKeys + */ + mapKeys( + object: Dictionary, + iteratee?: DictionaryIterator + ): Dictionary; + + /** + * @see _.mapKeys + */ + mapKeys( + object: List|Dictionary, + iteratee?: TObject + ): Dictionary; + + /** + * @see _.mapKeys + */ + mapKeys( + object: List|Dictionary, + iteratee?: string + ): Dictionary; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.mapKeys + */ + mapKeys( + iteratee?: ListIterator + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.mapKeys + */ + mapKeys( + iteratee?: TObject + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.mapKeys + */ + mapKeys( + iteratee?: string + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.mapKeys + */ + mapKeys( + iteratee?: ListIterator|DictionaryIterator + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.mapKeys + */ + mapKeys( + iteratee?: TObject + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.mapKeys + */ + mapKeys( + iteratee?: string + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.mapKeys + */ + mapKeys( + iteratee?: ListIterator + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.mapKeys + */ + mapKeys( + iteratee?: TObject + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.mapKeys + */ + mapKeys( + iteratee?: string + ): LoDashExplicitObjectWrapper>; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.mapKeys + */ + mapKeys( + iteratee?: ListIterator|DictionaryIterator + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.mapKeys + */ + mapKeys( + iteratee?: TObject + ): LoDashExplicitObjectWrapper>; + + /** + * @see _.mapKeys + */ + mapKeys( + iteratee?: string + ): LoDashExplicitObjectWrapper>; + } + + //_.mapValues + interface LoDashStatic { + /** + * Creates an object with the same keys as object and values generated by running each own + * enumerable property of object through iteratee. The iteratee function is bound to thisArg + * and invoked with three arguments: (value, key, object). + * + * If a property name is provided iteratee the created "_.property" style callback returns + * the property value of the given element. + * + * If a value is also provided for thisArg the creted "_.matchesProperty" style callback returns + * true for elements that have a matching property value, else false;. + * + * If an object is provided for iteratee the created "_.matches" style callback returns true + * for elements that have the properties of the given object, else false. + * + * @param {Object} object The object to iterate over. + * @param {Function|Object|string} [iteratee=_.identity] The function invoked per iteration. + * @param {Object} [thisArg] The `this` binding of `iteratee`. + * @return {Object} Returns the new mapped object. + */ + mapValues(obj: Dictionary, callback: ObjectIterator): Dictionary; + mapValues(obj: Dictionary, where: Dictionary): Dictionary; + mapValues(obj: T, pluck: string): TMapped; + mapValues(obj: T, callback: ObjectIterator): T; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.mapValues + * TValue is the type of the property values of T. + * TResult is the type output by the ObjectIterator function + */ + mapValues(callback: ObjectIterator): LoDashImplicitObjectWrapper>; + + /** + * @see _.mapValues + * TResult is the type of the property specified by pluck. + * T should be a Dictionary> + */ + mapValues(pluck: string): LoDashImplicitObjectWrapper>; + + /** + * @see _.mapValues + * TResult is the type of the properties of each object in the values of T + * T should be a Dictionary> + */ + mapValues(where: Dictionary): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.mapValues + * TValue is the type of the property values of T. + * TResult is the type output by the ObjectIterator function + */ + mapValues(callback: ObjectIterator): LoDashExplicitObjectWrapper>; + + /** + * @see _.mapValues + * TResult is the type of the property specified by pluck. + * T should be a Dictionary> + */ + mapValues(pluck: string): LoDashExplicitObjectWrapper>; + + /** + * @see _.mapValues + * TResult is the type of the properties of each object in the values of T + * T should be a Dictionary> + */ + mapValues(where: Dictionary): LoDashExplicitObjectWrapper; + } + + //_.merge + interface LoDashStatic { + /** + * Recursively merges own and inherited enumerable properties of source + * objects into the destination object, skipping source properties that resolve + * to `undefined`. Array and plain object properties are merged recursively. + * Other objects and value types are overridden by assignment. Source objects + * are applied from left to right. Subsequent sources overwrite property + * assignments of previous sources. + * + * **Note:** This method mutates `object`. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} [sources] The source objects. + * @returns {Object} Returns `object`. + * @example + * + * var users = { + * 'data': [{ 'user': 'barney' }, { 'user': 'fred' }] + * }; + * + * var ages = { + * 'data': [{ 'age': 36 }, { 'age': 40 }] + * }; + * + * _.merge(users, ages); + * // => { 'data': [{ 'user': 'barney', 'age': 36 }, { 'user': 'fred', 'age': 40 }] } + */ + merge( + object: TObject, + source: TSource + ): TObject & TSource; + + /** + * @see _.merge + */ + merge( + object: TObject, + source1: TSource1, + source2: TSource2 + ): TObject & TSource1 & TSource2; + + /** + * @see _.merge + */ + merge( + object: TObject, + source1: TSource1, + source2: TSource2, + source3: TSource3 + ): TObject & TSource1 & TSource2 & TSource3; + + /** + * @see _.merge + */ + merge( + object: TObject, + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4 + ): TObject & TSource1 & TSource2 & TSource3 & TSource4; + + /** + * @see _.merge + */ + merge( + object: any, + ...otherArgs: any[] + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.merge + */ + merge( + source: TSource + ): LoDashImplicitObjectWrapper; + + /** + * @see _.merge + */ + merge( + source1: TSource1, + source2: TSource2 + ): LoDashImplicitObjectWrapper; + + /** + * @see _.merge + */ + merge( + source1: TSource1, + source2: TSource2, + source3: TSource3 + ): LoDashImplicitObjectWrapper; + + /** + * @see _.merge + */ + merge( + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4 + ): LoDashImplicitObjectWrapper; + + /** + * @see _.merge + */ + merge( + ...otherArgs: any[] + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.merge + */ + merge( + source: TSource + ): LoDashExplicitObjectWrapper; + + /** + * @see _.merge + */ + merge( + source1: TSource1, + source2: TSource2 + ): LoDashExplicitObjectWrapper; + + /** + * @see _.merge + */ + merge( + source1: TSource1, + source2: TSource2, + source3: TSource3 + ): LoDashExplicitObjectWrapper; + + /** + * @see _.merge + */ + merge( + ): LoDashExplicitObjectWrapper; + + /** + * @see _.merge + */ + merge( + ...otherArgs: any[] + ): LoDashExplicitObjectWrapper; + } + + //_.mergeWith + interface MergeWithCustomizer { + (value: any, srcValue: any, key?: string, object?: Object, source?: Object): any; + } + + interface LoDashStatic { + /** + * This method is like `_.merge` except that it accepts `customizer` which + * is invoked to produce the merged values of the destination and source + * properties. If `customizer` returns `undefined` merging is handled by the + * method instead. The `customizer` is invoked with seven arguments: + * (objValue, srcValue, key, object, source, stack). + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The destination object. + * @param {...Object} sources The source objects. + * @param {Function} customizer The function to customize assigned values. + * @returns {Object} Returns `object`. + * @example + * + * function customizer(objValue, srcValue) { + * if (_.isArray(objValue)) { + * return objValue.concat(srcValue); + * } + * } + * + * var object = { + * 'fruits': ['apple'], + * 'vegetables': ['beet'] + * }; + * + * var other = { + * 'fruits': ['banana'], + * 'vegetables': ['carrot'] + * }; + * + * _.merge(object, other, customizer); + * // => { 'fruits': ['apple', 'banana'], 'vegetables': ['beet', 'carrot'] } + */ + mergeWith( + object: TObject, + source: TSource, + customizer: MergeWithCustomizer + ): TObject & TSource; + + /** + * @see _.mergeWith + */ + mergeWith( + object: TObject, + source1: TSource1, + source2: TSource2, + customizer: MergeWithCustomizer + ): TObject & TSource1 & TSource2; + + /** + * @see _.mergeWith + */ + mergeWith( + object: TObject, + source1: TSource1, + source2: TSource2, + source3: TSource3, + customizer: MergeWithCustomizer + ): TObject & TSource1 & TSource2 & TSource3; + + /** + * @see _.mergeWith + */ + mergeWith( + object: TObject, + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4, + customizer: MergeWithCustomizer + ): TObject & TSource1 & TSource2 & TSource3 & TSource4; + + /** + * @see _.mergeWith + */ + mergeWith( + object: any, + ...otherArgs: any[] + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.mergeWith + */ + mergeWith( + source: TSource, + customizer: MergeWithCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see _.mergeWith + */ + mergeWith( + source1: TSource1, + source2: TSource2, + customizer: MergeWithCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see _.mergeWith + */ + mergeWith( + source1: TSource1, + source2: TSource2, + source3: TSource3, + customizer: MergeWithCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see _.mergeWith + */ + mergeWith( + source1: TSource1, + source2: TSource2, + source3: TSource3, + source4: TSource4, + customizer: MergeWithCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see _.mergeWith + */ + mergeWith( + ...otherArgs: any[] + ): LoDashImplicitObjectWrapper; + } + + //_.omit + interface LoDashStatic { + /** + * The opposite of `_.pick`; this method creates an object composed of the + * own and inherited enumerable properties of `object` that are not omitted. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [props] The property names to omit, specified + * individually or in arrays.. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.omit(object, ['a', 'c']); + * // => { 'b': '2' } + */ + + omit( + object: T, + ...predicate: (StringRepresentable|StringRepresentable[])[] + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + + /** + * @see _.omit + */ + omit( + ...predicate: (StringRepresentable|StringRepresentable[])[] + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + + /** + * @see _.omit + */ + omit( + ...predicate: (StringRepresentable|StringRepresentable[])[] + ): LoDashExplicitObjectWrapper; + } + + //_.omitBy + interface LoDashStatic { + /** + * The opposite of `_.pickBy`; this method creates an object composed of the + * own and inherited enumerable properties of `object` that `predicate` + * doesn't return truthy for. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {Function|Object|string} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.omitBy(object, _.isNumber); + * // => { 'b': '2' } + */ + omitBy( + object: T, + predicate: ObjectIterator + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.omitBy + */ + omitBy( + predicate: ObjectIterator + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.omitBy + */ + omitBy( + predicate: ObjectIterator + ): LoDashExplicitObjectWrapper; + } + + //_.pick + interface LoDashStatic { + /** + * Creates an object composed of the picked `object` properties. + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {...(string|string[])} [props] The property names to pick, specified + * individually or in arrays. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pick(object, ['a', 'c']); + * // => { 'a': 1, 'c': 3 } + */ + pick( + object: T, + ...predicate: (StringRepresentable|StringRepresentable[])[] + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.pick + */ + pick( + ...predicate: (StringRepresentable|StringRepresentable[])[] + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.pick + */ + pick( + ...predicate: (StringRepresentable|StringRepresentable[])[] + ): LoDashExplicitObjectWrapper; + } + + //_.pickBy + interface LoDashStatic { + /** + * Creates an object composed of the `object` properties `predicate` returns + * truthy for. The predicate is invoked with one argument: (value). + * + * @static + * @memberOf _ + * @category Object + * @param {Object} object The source object. + * @param {Function|Object|string} [predicate=_.identity] The function invoked per property. + * @returns {Object} Returns the new object. + * @example + * + * var object = { 'a': 1, 'b': '2', 'c': 3 }; + * + * _.pickBy(object, _.isNumber); + * // => { 'a': 1, 'c': 3 } + */ + pickBy( + object: T, + predicate?: ObjectIterator + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.pickBy + */ + pickBy( + predicate?: ObjectIterator + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.pickBy + */ + pickBy( + predicate?: ObjectIterator + ): LoDashExplicitObjectWrapper; + } + + //_.result + interface LoDashStatic { + /** + * This method is like _.get except that if the resolved value is a function it’s invoked with the this binding + * of its parent object and its result is returned. + * + * @param object The object to query. + * @param path The path of the property to resolve. + * @param defaultValue The value returned if the resolved value is undefined. + * @return Returns the resolved value. + */ + result( + object: TObject, + path: StringRepresentable|StringRepresentable[], + defaultValue?: TResult|((...args: any[]) => TResult) + ): TResult; + + /** + * @see _.result + */ + result( + object: any, + path: StringRepresentable|StringRepresentable[], + defaultValue?: TResult|((...args: any[]) => TResult) + ): TResult; + } + + interface LoDashImplicitWrapper { + /** + * @see _.result + */ + result( + path: StringRepresentable|StringRepresentable[], + defaultValue?: TResult|((...args: any[]) => TResult) + ): TResult; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.result + */ + result( + path: StringRepresentable|StringRepresentable[], + defaultValue?: TResult|((...args: any[]) => TResult) + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.result + */ + result( + path: StringRepresentable|StringRepresentable[], + defaultValue?: TResult|((...args: any[]) => TResult) + ): TResult; + } + + interface LoDashExplicitWrapper { + /** + * @see _.result + */ + result( + path: StringRepresentable|StringRepresentable[], + defaultValue?: any + ): TResultWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.result + */ + result( + path: StringRepresentable|StringRepresentable[], + defaultValue?: any + ): TResultWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.result + */ + result( + path: StringRepresentable|StringRepresentable[], + defaultValue?: any + ): TResultWrapper; + } + + //_.set + interface LoDashStatic { + /** + * Sets the value at path of object. If a portion of path doesn’t exist it’s created. Arrays are created for + * missing index properties while objects are created for all other missing properties. Use _.setWith to + * customize path creation. + * + * @param object The object to modify. + * @param path The path of the property to set. + * @param value The value to set. + * @return Returns object. + */ + set( + object: Object, + path: StringRepresentable|StringRepresentable[], + value: any + ): TResult; + + /** + * @see _.set + */ + set( + object: Object, + path: StringRepresentable|StringRepresentable[], + value: V + ): TResult; + + /** + * @see _.set + */ + set( + object: O, + path: StringRepresentable|StringRepresentable[], + value: V + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.set + */ + set( + path: StringRepresentable|StringRepresentable[], + value: any + ): LoDashImplicitObjectWrapper; + + /** + * @see _.set + */ + set( + path: StringRepresentable|StringRepresentable[], + value: V + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.set + */ + set( + path: StringRepresentable|StringRepresentable[], + value: any + ): LoDashExplicitObjectWrapper; + + /** + * @see _.set + */ + set( + path: StringRepresentable|StringRepresentable[], + value: V + ): LoDashExplicitObjectWrapper; + } + + //_.setWith + interface SetWithCustomizer { + (nsValue: any, key: string, nsObject: T): any; + } + + interface LoDashStatic { + /** + * This method is like _.set except that it accepts customizer which is invoked to produce the objects of + * path. If customizer returns undefined path creation is handled by the method instead. The customizer is + * invoked with three arguments: (nsValue, key, nsObject). + * + * @param object The object to modify. + * @param path The path of the property to set. + * @param value The value to set. + * @parem customizer The function to customize assigned values. + * @return Returns object. + */ + setWith( + object: Object, + path: StringRepresentable|StringRepresentable[], + value: any, + customizer?: SetWithCustomizer + ): TResult; + + /** + * @see _.setWith + */ + setWith( + object: Object, + path: StringRepresentable|StringRepresentable[], + value: V, + customizer?: SetWithCustomizer + ): TResult; + + /** + * @see _.setWith + */ + setWith( + object: O, + path: StringRepresentable|StringRepresentable[], + value: V, + customizer?: SetWithCustomizer + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.setWith + */ + setWith( + path: StringRepresentable|StringRepresentable[], + value: any, + customizer?: SetWithCustomizer + ): LoDashImplicitObjectWrapper; + + /** + * @see _.setWith + */ + setWith( + path: StringRepresentable|StringRepresentable[], + value: V, + customizer?: SetWithCustomizer + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.setWith + */ + setWith( + path: StringRepresentable|StringRepresentable[], + value: any, + customizer?: SetWithCustomizer + ): LoDashExplicitObjectWrapper; + + /** + * @see _.setWith + */ + setWith( + path: StringRepresentable|StringRepresentable[], + value: V, + customizer?: SetWithCustomizer + ): LoDashExplicitObjectWrapper; + } + + //_.toPairs + interface LoDashStatic { + /** + * Creates an array of own enumerable key-value pairs for object. + * + * @param object The object to query. + * @return Returns the new array of key-value pairs. + */ + toPairs(object?: T): any[][]; + + toPairs(object?: T): TResult[][]; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.toPairs + */ + toPairs(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.toPairs + */ + toPairs(): LoDashExplicitArrayWrapper; + } + + //_.toPairsIn + interface LoDashStatic { + /** + * Creates an array of own and inherited enumerable key-value pairs for object. + * + * @param object The object to query. + * @return Returns the new array of key-value pairs. + */ + toPairsIn(object?: T): any[][]; + + toPairsIn(object?: T): TResult[][]; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.toPairsIn + */ + toPairsIn(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.toPairsIn + */ + toPairsIn(): LoDashExplicitArrayWrapper; + } + + //_.transform + interface LoDashStatic { + /** + * An alternative to _.reduce; this method transforms object to a new accumulator object which is the result of + * running each of its own enumerable properties through iteratee, with each invocation potentially mutating + * the accumulator object. The iteratee is bound to thisArg and invoked with four arguments: (accumulator, + * value, key, object). Iteratee functions may exit iteration early by explicitly returning false. + * + * @param object The object to iterate over. + * @param iteratee The function invoked per iteration. + * @param accumulator The custom accumulator value. + * @param thisArg The this binding of iteratee. + * @return Returns the accumulated value. + */ + transform( + object: T[], + iteratee?: MemoVoidArrayIterator, + accumulator?: TResult[] + ): TResult[]; + + /** + * @see _.transform + */ + transform( + object: T[], + iteratee?: MemoVoidArrayIterator>, + accumulator?: Dictionary + ): Dictionary; + + /** + * @see _.transform + */ + transform( + object: Dictionary, + iteratee?: MemoVoidDictionaryIterator>, + accumulator?: Dictionary + ): Dictionary; + + /** + * @see _.transform + */ + transform( + object: Dictionary, + iteratee?: MemoVoidDictionaryIterator, + accumulator?: TResult[] + ): TResult[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.transform + */ + transform( + iteratee?: MemoVoidArrayIterator, + accumulator?: TResult[] + ): LoDashImplicitArrayWrapper; + + /** + * @see _.transform + */ + transform( + iteratee?: MemoVoidArrayIterator>, + accumulator?: Dictionary + ): LoDashImplicitObjectWrapper>; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.transform + */ + transform( + iteratee?: MemoVoidDictionaryIterator>, + accumulator?: Dictionary + ): LoDashImplicitObjectWrapper>; + + /** + * @see _.transform + */ + transform( + iteratee?: MemoVoidDictionaryIterator, + accumulator?: TResult[] + ): LoDashImplicitArrayWrapper; + } + + //_.unset + interface LoDashStatic { + /** + * Removes the property at path of object. + * + * Note: This method mutates object. + * + * @param object The object to modify. + * @param path The path of the property to unset. + * @return Returns true if the property is deleted, else false. + */ + unset( + object: T, + path: StringRepresentable|StringRepresentable[] + ): boolean; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.unset + */ + unset(path: StringRepresentable|StringRepresentable[]): LoDashImplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.unset + */ + unset(path: StringRepresentable|StringRepresentable[]): LoDashExplicitWrapper; + } + + //_.update + interface LoDashStatic { + /** + * This method is like _.set except that accepts updater to produce the value to set. Use _.updateWith to + * customize path creation. The updater is invoked with one argument: (value). + * + * @param object The object to modify. + * @param path The path of the property to set. + * @param updater The function to produce the updated value. + * @return Returns object. + */ + update( + object: Object, + path: StringRepresentable|StringRepresentable[], + updater: Function + ): TResult; + + /** + * @see _.update + */ + update( + object: Object, + path: StringRepresentable|StringRepresentable[], + updater: U + ): TResult; + + /** + * @see _.update + */ + update( + object: O, + path: StringRepresentable|StringRepresentable[], + updater: Function + ): TResult; + + /** + * @see _.update + */ + update( + object: O, + path: StringRepresentable|StringRepresentable[], + updater: U + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.update + */ + update( + path: StringRepresentable|StringRepresentable[], + updater: any + ): LoDashImplicitObjectWrapper; + + /** + * @see _.update + */ + update( + path: StringRepresentable|StringRepresentable[], + updater: U + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.update + */ + update( + path: StringRepresentable|StringRepresentable[], + updater: any + ): LoDashExplicitObjectWrapper; + + /** + * @see _.update + */ + update( + path: StringRepresentable|StringRepresentable[], + updater: U + ): LoDashExplicitObjectWrapper; + } + + //_.values + interface LoDashStatic { + /** + * Creates an array of the own enumerable property values of object. + * + * @param object The object to query. + * @return Returns an array of property values. + */ + values(object?: any): T[]; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.values + */ + values(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.values + */ + values(): LoDashExplicitArrayWrapper; + } + + //_.valuesIn + interface LoDashStatic { + /** + * Creates an array of the own and inherited enumerable property values of object. + * + * @param object The object to query. + * @return Returns the array of property values. + */ + valuesIn(object?: any): T[]; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.valuesIn + */ + valuesIn(): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.valuesIn + */ + valuesIn(): LoDashExplicitArrayWrapper; + } + + /********** + * String * + **********/ + + //_.camelCase + interface LoDashStatic { + /** + * Converts string to camel case. + * + * @param string The string to convert. + * @return Returns the camel cased string. + */ + camelCase(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.camelCase + */ + camelCase(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.camelCase + */ + camelCase(): LoDashExplicitWrapper; + } + + //_.capitalize + interface LoDashStatic { + /** + * Converts the first character of string to upper case and the remaining to lower case. + * + * @param string The string to capitalize. + * @return Returns the capitalized string. + */ + capitalize(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.capitalize + */ + capitalize(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.capitalize + */ + capitalize(): LoDashExplicitWrapper; + } + + //_.deburr + interface LoDashStatic { + /** + * Deburrs string by converting latin-1 supplementary letters to basic latin letters and removing combining + * diacritical marks. + * + * @param string The string to deburr. + * @return Returns the deburred string. + */ + deburr(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.deburr + */ + deburr(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.deburr + */ + deburr(): LoDashExplicitWrapper; + } + + //_.endsWith + interface LoDashStatic { + /** + * Checks if string ends with the given target string. + * + * @param string The string to search. + * @param target The string to search for. + * @param position The position to search from. + * @return Returns true if string ends with target, else false. + */ + endsWith( + string?: string, + target?: string, + position?: number + ): boolean; + } + + interface LoDashImplicitWrapper { + /** + * @see _.endsWith + */ + endsWith( + target?: string, + position?: number + ): boolean; + } + + interface LoDashExplicitWrapper { + /** + * @see _.endsWith + */ + endsWith( + target?: string, + position?: number + ): LoDashExplicitWrapper; + } + + // _.escape + interface LoDashStatic { + /** + * Converts the characters "&", "<", ">", '"', "'", and "`" in string to their corresponding HTML entities. + * + * Note: No other characters are escaped. To escape additional characters use a third-party library like he. + * + * hough the ">" character is escaped for symmetry, characters like ">" and "/" don’t need escaping in HTML + * and have no special meaning unless they're part of a tag or unquoted attribute value. See Mathias Bynens’s + * article (under "semi-related fun fact") for more details. + * + * Backticks are escaped because in IE < 9, they can break out of attribute values or HTML comments. See #59, + * #102, #108, and #133 of the HTML5 Security Cheatsheet for more details. + * + * When working with HTML you should always quote attribute values to reduce XSS vectors. + * + * @param string The string to escape. + * @return Returns the escaped string. + */ + escape(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.escape + */ + escape(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.escape + */ + escape(): LoDashExplicitWrapper; + } + + // _.escapeRegExp + interface LoDashStatic { + /** + * Escapes the RegExp special characters "^", "$", "\", ".", "*", "+", "?", "(", ")", "[", "]", + * "{", "}", and "|" in string. + * + * @param string The string to escape. + * @return Returns the escaped string. + */ + escapeRegExp(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.escapeRegExp + */ + escapeRegExp(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.escapeRegExp + */ + escapeRegExp(): LoDashExplicitWrapper; + } + + //_.kebabCase + interface LoDashStatic { + /** + * Converts string to kebab case. + * + * @param string The string to convert. + * @return Returns the kebab cased string. + */ + kebabCase(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.kebabCase + */ + kebabCase(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.kebabCase + */ + kebabCase(): LoDashExplicitWrapper; + } + + //_.lowerCase + interface LoDashStatic { + /** + * Converts `string`, as space separated words, to lower case. + * + * @param string The string to convert. + * @return Returns the lower cased string. + */ + lowerCase(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.lowerCase + */ + lowerCase(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.lowerCase + */ + lowerCase(): LoDashExplicitWrapper; + } + + //_.lowerFirst + interface LoDashStatic { + /** + * Converts the first character of `string` to lower case. + * + * @param string The string to convert. + * @return Returns the converted string. + */ + lowerFirst(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.lowerFirst + */ + lowerFirst(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.lowerFirst + */ + lowerFirst(): LoDashExplicitWrapper; + } + + //_.pad + interface LoDashStatic { + /** + * Pads string on the left and right sides if it’s shorter than length. Padding characters are truncated if + * they can’t be evenly divided by length. + * + * @param string The string to pad. + * @param length The padding length. + * @param chars The string used as padding. + * @return Returns the padded string. + */ + pad( + string?: string, + length?: number, + chars?: string + ): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.pad + */ + pad( + length?: number, + chars?: string + ): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.pad + */ + pad( + length?: number, + chars?: string + ): LoDashExplicitWrapper; + } + + //_.padEnd + interface LoDashStatic { + /** + * Pads string on the right side if it’s shorter than length. Padding characters are truncated if they exceed + * length. + * + * @param string The string to pad. + * @param length The padding length. + * @param chars The string used as padding. + * @return Returns the padded string. + */ + padEnd( + string?: string, + length?: number, + chars?: string + ): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.padEnd + */ + padEnd( + length?: number, + chars?: string + ): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.padEnd + */ + padEnd( + length?: number, + chars?: string + ): LoDashExplicitWrapper; + } + + //_.padStart + interface LoDashStatic { + /** + * Pads string on the left side if it’s shorter than length. Padding characters are truncated if they exceed + * length. + * + * @param string The string to pad. + * @param length The padding length. + * @param chars The string used as padding. + * @return Returns the padded string. + */ + padStart( + string?: string, + length?: number, + chars?: string + ): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.padStart + */ + padStart( + length?: number, + chars?: string + ): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.padStart + */ + padStart( + length?: number, + chars?: string + ): LoDashExplicitWrapper; + } + + //_.parseInt + interface LoDashStatic { + /** + * Converts string to an integer of the specified radix. If radix is undefined or 0, a radix of 10 is used + * unless value is a hexadecimal, in which case a radix of 16 is used. + * + * Note: This method aligns with the ES5 implementation of parseInt. + * + * @param string The string to convert. + * @param radix The radix to interpret value by. + * @return Returns the converted integer. + */ + parseInt( + string: string, + radix?: number + ): number; + } + + interface LoDashImplicitWrapper { + /** + * @see _.parseInt + */ + parseInt(radix?: number): number; + } + + interface LoDashExplicitWrapper { + /** + * @see _.parseInt + */ + parseInt(radix?: number): LoDashExplicitWrapper; + } + + //_.repeat + interface LoDashStatic { + /** + * Repeats the given string n times. + * + * @param string The string to repeat. + * @param n The number of times to repeat the string. + * @return Returns the repeated string. + */ + repeat( + string?: string, + n?: number + ): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.repeat + */ + repeat(n?: number): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.repeat + */ + repeat(n?: number): LoDashExplicitWrapper; + } + + //_.replace + interface LoDashStatic { + /** + * Replaces matches for pattern in string with replacement. + * + * Note: This method is based on String#replace. + * + * @param string + * @param pattern + * @param replacement + * @return Returns the modified string. + */ + replace( + string: string, + pattern: RegExp|string, + replacement: Function|string + ): string; + + /** + * @see _.replace + */ + replace( + pattern?: RegExp|string, + replacement?: Function|string + ): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.replace + */ + replace( + pattern?: RegExp|string, + replacement?: Function|string + ): string; + + /** + * @see _.replace + */ + replace( + replacement?: Function|string + ): string; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.replace + */ + replace( + pattern?: RegExp|string, + replacement?: Function|string + ): string; + + /** + * @see _.replace + */ + replace( + replacement?: Function|string + ): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.replace + */ + replace( + pattern?: RegExp|string, + replacement?: Function|string + ): LoDashExplicitWrapper; + + /** + * @see _.replace + */ + replace( + replacement?: Function|string + ): LoDashExplicitWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.replace + */ + replace( + pattern?: RegExp|string, + replacement?: Function|string + ): LoDashExplicitWrapper; + + /** + * @see _.replace + */ + replace( + replacement?: Function|string + ): LoDashExplicitWrapper; + } + + //_.snakeCase + interface LoDashStatic { + /** + * Converts string to snake case. + * + * @param string The string to convert. + * @return Returns the snake cased string. + */ + snakeCase(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.snakeCase + */ + snakeCase(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.snakeCase + */ + snakeCase(): LoDashExplicitWrapper; + } + + //_.split + interface LoDashStatic { + /** + * Splits string by separator. + * + * Note: This method is based on String#split. + * + * @param string + * @param separator + * @param limit + * @return Returns the new array of string segments. + */ + split( + string: string, + separator?: RegExp|string, + limit?: number + ): string[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.split + */ + split( + separator?: RegExp|string, + limit?: number + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.split + */ + split( + separator?: RegExp|string, + limit?: number + ): LoDashExplicitArrayWrapper; + } + + //_.startCase + interface LoDashStatic { + /** + * Converts string to start case. + * + * @param string The string to convert. + * @return Returns the start cased string. + */ + startCase(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.startCase + */ + startCase(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.startCase + */ + startCase(): LoDashExplicitWrapper; + } + + //_.startsWith + interface LoDashStatic { + /** + * Checks if string starts with the given target string. + * + * @param string The string to search. + * @param target The string to search for. + * @param position The position to search from. + * @return Returns true if string starts with target, else false. + */ + startsWith( + string?: string, + target?: string, + position?: number + ): boolean; + } + + interface LoDashImplicitWrapper { + /** + * @see _.startsWith + */ + startsWith( + target?: string, + position?: number + ): boolean; + } + + interface LoDashExplicitWrapper { + /** + * @see _.startsWith + */ + startsWith( + target?: string, + position?: number + ): LoDashExplicitWrapper; + } + + //_.template + interface TemplateOptions extends TemplateSettings { + /** + * The sourceURL of the template's compiled source. + */ + sourceURL?: string; + } + + interface TemplateExecutor { + (data?: Object): string; + source: string; + } + + interface LoDashStatic { + /** + * Creates a compiled template function that can interpolate data properties in "interpolate" delimiters, + * HTML-escape interpolated data properties in "escape" delimiters, and execute JavaScript in "evaluate" + * delimiters. Data properties may be accessed as free variables in the template. If a setting object is + * provided it takes precedence over _.templateSettings values. + * + * Note: In the development build _.template utilizes + * [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl) for easier + * debugging. + * + * For more information on precompiling templates see + * [lodash's custom builds documentation](https://lodash.com/custom-builds). + * + * For more information on Chrome extension sandboxes see + * [Chrome's extensions documentation](https://developer.chrome.com/extensions/sandboxingEval). + * + * @param string The template string. + * @param options The options object. + * @param options.escape The HTML "escape" delimiter. + * @param options.evaluate The "evaluate" delimiter. + * @param options.imports An object to import into the template as free variables. + * @param options.interpolate The "interpolate" delimiter. + * @param options.sourceURL The sourceURL of the template's compiled source. + * @param options.variable The data object variable name. + * @return Returns the compiled template function. + */ + template( + string: string, + options?: TemplateOptions + ): TemplateExecutor; + } + + interface LoDashImplicitWrapper { + /** + * @see _.template + */ + template(options?: TemplateOptions): TemplateExecutor; + } + + interface LoDashExplicitWrapper { + /** + * @see _.template + */ + template(options?: TemplateOptions): LoDashExplicitObjectWrapper; + } + + //_.toLower + interface LoDashStatic { + /** + * Converts `string`, as a whole, to lower case. + * + * @param string The string to convert. + * @return Returns the lower cased string. + */ + toLower(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.toLower + */ + toLower(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.toLower + */ + toLower(): LoDashExplicitWrapper; + } + + //_.toUpper + interface LoDashStatic { + /** + * Converts `string`, as a whole, to upper case. + * + * @param string The string to convert. + * @return Returns the upper cased string. + */ + toUpper(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.toUpper + */ + toUpper(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.toUpper + */ + toUpper(): LoDashExplicitWrapper; + } + + //_.trim + interface LoDashStatic { + /** + * Removes leading and trailing whitespace or specified characters from string. + * + * @param string The string to trim. + * @param chars The characters to trim. + * @return Returns the trimmed string. + */ + trim( + string?: string, + chars?: string + ): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.trim + */ + trim(chars?: string): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.trim + */ + trim(chars?: string): LoDashExplicitWrapper; + } + + //_.trimEnd + interface LoDashStatic { + /** + * Removes trailing whitespace or specified characters from string. + * + * @param string The string to trim. + * @param chars The characters to trim. + * @return Returns the trimmed string. + */ + trimEnd( + string?: string, + chars?: string + ): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.trimEnd + */ + trimEnd(chars?: string): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.trimEnd + */ + trimEnd(chars?: string): LoDashExplicitWrapper; + } + + //_.trimStart + interface LoDashStatic { + /** + * Removes leading whitespace or specified characters from string. + * + * @param string The string to trim. + * @param chars The characters to trim. + * @return Returns the trimmed string. + */ + trimStart( + string?: string, + chars?: string + ): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.trimStart + */ + trimStart(chars?: string): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.trimStart + */ + trimStart(chars?: string): LoDashExplicitWrapper; + } + + //_.truncate + interface TruncateOptions { + /** The maximum string length. */ + length?: number; + /** The string to indicate text is omitted. */ + omission?: string; + /** The separator pattern to truncate to. */ + separator?: string|RegExp; + } + + interface LoDashStatic { + /** + * Truncates string if it’s longer than the given maximum string length. The last characters of the truncated + * string are replaced with the omission string which defaults to "…". + * + * @param string The string to truncate. + * @param options The options object or maximum string length. + * @return Returns the truncated string. + */ + truncate( + string?: string, + options?: TruncateOptions + ): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.truncate + */ + truncate(options?: TruncateOptions): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.truncate + */ + truncate(options?: TruncateOptions): LoDashExplicitWrapper; + } + + //_.unescape + interface LoDashStatic { + /** + * The inverse of _.escape; this method converts the HTML entities &, <, >, ", ', and ` + * in string to their corresponding characters. + * + * Note: No other HTML entities are unescaped. To unescape additional HTML entities use a third-party library + * like he. + * + * @param string The string to unescape. + * @return Returns the unescaped string. + */ + unescape(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.unescape + */ + unescape(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.unescape + */ + unescape(): LoDashExplicitWrapper; + } + + //_.upperCase + interface LoDashStatic { + /** + * Converts `string`, as space separated words, to upper case. + * + * @param string The string to convert. + * @return Returns the upper cased string. + */ + upperCase(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.upperCase + */ + upperCase(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.upperCase + */ + upperCase(): LoDashExplicitWrapper; + } + + //_.upperFirst + interface LoDashStatic { + /** + * Converts the first character of `string` to upper case. + * + * @param string The string to convert. + * @return Returns the converted string. + */ + upperFirst(string?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.upperFirst + */ + upperFirst(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.upperFirst + */ + upperFirst(): LoDashExplicitWrapper; + } + + //_.words + interface LoDashStatic { + /** + * Splits `string` into an array of its words. + * + * @param string The string to inspect. + * @param pattern The pattern to match words. + * @return Returns the words of `string`. + */ + words( + string?: string, + pattern?: string|RegExp + ): string[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.words + */ + words(pattern?: string|RegExp): string[]; + } + + interface LoDashExplicitWrapper { + /** + * @see _.words + */ + words(pattern?: string|RegExp): LoDashExplicitArrayWrapper; + } + + /*********** + * Utility * + ***********/ + + //_.attempt + interface LoDashStatic { + /** + * Attempts to invoke func, returning either the result or the caught error object. Any additional arguments + * are provided to func when it’s invoked. + * + * @param func The function to attempt. + * @return Returns the func result or error object. + */ + attempt(func: (...args: any[]) => TResult, ...args: any[]): TResult|Error; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.attempt + */ + attempt(...args: any[]): TResult|Error; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.attempt + */ + attempt(...args: any[]): LoDashExplicitObjectWrapper; + } + + //_.constant + interface LoDashStatic { + /** + * Creates a function that returns value. + * + * @param value The value to return from the new function. + * @return Returns the new function. + */ + constant(value: T): () => T; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.constant + */ + constant(): LoDashImplicitObjectWrapper<() => TResult>; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.constant + */ + constant(): LoDashExplicitObjectWrapper<() => TResult>; + } + + //_.identity + interface LoDashStatic { + /** + * This method returns the first argument provided to it. + * + * @param value Any value. + * @return Returns value. + */ + identity(value?: T): T; + } + + interface LoDashImplicitWrapper { + /** + * @see _.identity + */ + identity(): T; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.identity + */ + identity(): T[]; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.identity + */ + identity(): T; + } + + interface LoDashExplicitWrapper { + /** + * @see _.identity + */ + identity(): LoDashExplicitWrapper; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.identity + */ + identity(): LoDashExplicitArrayWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.identity + */ + identity(): LoDashExplicitObjectWrapper; + } + + //_.iteratee + interface LoDashStatic { + /** + * Creates a function that invokes `func` with the arguments of the created + * function. If `func` is a property name the created callback returns the + * property value for a given element. If `func` is an object the created + * callback returns `true` for elements that contain the equivalent object properties, otherwise it returns `false`. + * + * @static + * @memberOf _ + * @category Util + * @param {*} [func=_.identity] The value to convert to a callback. + * @returns {Function} Returns the callback. + * @example + * + * var users = [ + * { 'user': 'barney', 'age': 36 }, + * { 'user': 'fred', 'age': 40 } + * ]; + * + * // create custom iteratee shorthands + * _.iteratee = _.wrap(_.iteratee, function(callback, func) { + * var p = /^(\S+)\s*([<>])\s*(\S+)$/.exec(func); + * return !p ? callback(func) : function(object) { + * return (p[2] == '>' ? object[p[1]] > p[3] : object[p[1]] < p[3]); + * }; + * }); + * + * _.filter(users, 'age > 36'); + * // => [{ 'user': 'fred', 'age': 40 }] + */ + iteratee( + func: Function + ): (...args: any[]) => TResult; + + /** + * @see _.iteratee + */ + iteratee( + func: string + ): (object: any) => TResult; + + /** + * @see _.iteratee + */ + iteratee( + func: Object + ): (object: any) => boolean; + + /** + * @see _.iteratee + */ + iteratee(): (value: TResult) => TResult; + } + + interface LoDashImplicitWrapper { + /** + * @see _.iteratee + */ + iteratee(): LoDashImplicitObjectWrapper<(object: any) => TResult>; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.iteratee + */ + iteratee(): LoDashImplicitObjectWrapper<(object: any) => boolean>; + + /** + * @see _.iteratee + */ + iteratee(): LoDashImplicitObjectWrapper<(...args: any[]) => TResult>; + } + + interface LoDashExplicitWrapper { + /** + * @see _.iteratee + */ + iteratee(): LoDashExplicitObjectWrapper<(object: any) => TResult>; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.iteratee + */ + iteratee(): LoDashExplicitObjectWrapper<(object: any) => boolean>; + + /** + * @see _.iteratee + */ + iteratee(): LoDashExplicitObjectWrapper<(...args: any[]) => TResult>; + } + + //_.matches + interface LoDashStatic { + /** + * Creates a function that performs a deep comparison between a given object and source, returning true if the + * given object has equivalent property values, else false. + * + * Note: This method supports comparing arrays, booleans, Date objects, numbers, Object objects, regexes, and + * strings. Objects are compared by their own, not inherited, enumerable properties. For comparing a single own + * or inherited property value see _.matchesProperty. + * + * @param source The object of property values to match. + * @return Returns the new function. + */ + matches(source: T): (value: any) => boolean; + + /** + * @see _.matches + */ + matches(source: T): (value: V) => boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.matches + */ + matches(): LoDashImplicitObjectWrapper<(value: V) => boolean>; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.matches + */ + matches(): LoDashExplicitObjectWrapper<(value: V) => boolean>; + } + + //_.matchesProperty + interface LoDashStatic { + /** + * Creates a function that compares the property value of path on a given object to value. + * + * Note: This method supports comparing arrays, booleans, Date objects, numbers, Object objects, regexes, and + * strings. Objects are compared by their own, not inherited, enumerable properties. + * + * @param path The path of the property to get. + * @param srcValue The value to match. + * @return Returns the new function. + */ + matchesProperty( + path: StringRepresentable|StringRepresentable[], + srcValue: T + ): (value: any) => boolean; + + /** + * @see _.matchesProperty + */ + matchesProperty( + path: StringRepresentable|StringRepresentable[], + srcValue: T + ): (value: V) => boolean; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.matchesProperty + */ + matchesProperty( + srcValue: SrcValue + ): LoDashImplicitObjectWrapper<(value: any) => boolean>; + + /** + * @see _.matchesProperty + */ + matchesProperty( + srcValue: SrcValue + ): LoDashImplicitObjectWrapper<(value: Value) => boolean>; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.matchesProperty + */ + matchesProperty( + srcValue: SrcValue + ): LoDashExplicitObjectWrapper<(value: any) => boolean>; + + /** + * @see _.matchesProperty + */ + matchesProperty( + srcValue: SrcValue + ): LoDashExplicitObjectWrapper<(value: Value) => boolean>; + } + + //_.method + interface LoDashStatic { + /** + * Creates a function that invokes the method at path on a given object. Any additional arguments are provided + * to the invoked method. + * + * @param path The path of the method to invoke. + * @param args The arguments to invoke the method with. + * @return Returns the new function. + */ + method( + path: string|StringRepresentable[], + ...args: any[] + ): (object: TObject) => TResult; + + /** + * @see _.method + */ + method( + path: string|StringRepresentable[], + ...args: any[] + ): (object: any) => TResult; + } + + interface LoDashImplicitWrapper { + /** + * @see _.method + */ + method(...args: any[]): LoDashImplicitObjectWrapper<(object: TObject) => TResult>; + + /** + * @see _.method + */ + method(...args: any[]): LoDashImplicitObjectWrapper<(object: any) => TResult>; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.method + */ + method(...args: any[]): LoDashImplicitObjectWrapper<(object: TObject) => TResult>; + + /** + * @see _.method + */ + method(...args: any[]): LoDashImplicitObjectWrapper<(object: any) => TResult>; + } + + interface LoDashExplicitWrapper { + /** + * @see _.method + */ + method(...args: any[]): LoDashExplicitObjectWrapper<(object: TObject) => TResult>; + + /** + * @see _.method + */ + method(...args: any[]): LoDashExplicitObjectWrapper<(object: any) => TResult>; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.method + */ + method(...args: any[]): LoDashExplicitObjectWrapper<(object: TObject) => TResult>; + + /** + * @see _.method + */ + method(...args: any[]): LoDashExplicitObjectWrapper<(object: any) => TResult>; + } + + //_.methodOf + interface LoDashStatic { + /** + * The opposite of _.method; this method creates a function that invokes the method at a given path on object. + * Any additional arguments are provided to the invoked method. + * + * @param object The object to query. + * @param args The arguments to invoke the method with. + * @return Returns the new function. + */ + methodOf( + object: TObject, + ...args: any[] + ): (path: StringRepresentable|StringRepresentable[]) => TResult; + + /** + * @see _.methodOf + */ + methodOf( + object: {}, + ...args: any[] + ): (path: StringRepresentable|StringRepresentable[]) => TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.methodOf + */ + methodOf( + ...args: any[] + ): LoDashImplicitObjectWrapper<(path: StringRepresentable|StringRepresentable[]) => TResult>; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.methodOf + */ + methodOf( + ...args: any[] + ): LoDashExplicitObjectWrapper<(path: StringRepresentable|StringRepresentable[]) => TResult>; + } + + //_.mixin + interface MixinOptions { + chain?: boolean; + } + + interface LoDashStatic { + /** + * Adds all own enumerable function properties of a source object to the destination object. If object is a + * function then methods are added to its prototype as well. + * + * Note: Use _.runInContext to create a pristine lodash function to avoid conflicts caused by modifying + * the original. + * + * @param object The destination object. + * @param source The object of functions to add. + * @param options The options object. + * @param options.chain Specify whether the functions added are chainable. + * @return Returns object. + */ + mixin( + object: TObject, + source: Dictionary, + options?: MixinOptions + ): TResult; + + /** + * @see _.mixin + */ + mixin( + source: Dictionary, + options?: MixinOptions + ): TResult; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.mixin + */ + mixin( + source: Dictionary, + options?: MixinOptions + ): LoDashImplicitObjectWrapper; + + /** + * @see _.mixin + */ + mixin( + options?: MixinOptions + ): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.mixin + */ + mixin( + source: Dictionary, + options?: MixinOptions + ): LoDashExplicitObjectWrapper; + + /** + * @see _.mixin + */ + mixin( + options?: MixinOptions + ): LoDashExplicitObjectWrapper; + } + + //_.noConflict + interface LoDashStatic { + /** + * Reverts the _ variable to its previous value and returns a reference to the lodash function. + * + * @return Returns the lodash function. + */ + noConflict(): typeof _; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.noConflict + */ + noConflict(): typeof _; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.noConflict + */ + noConflict(): LoDashExplicitObjectWrapper; + } + + //_.noop + interface LoDashStatic { + /** + * A no-operation function that returns undefined regardless of the arguments it receives. + * + * @return undefined + */ + noop(...args: any[]): void; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.noop + */ + noop(...args: any[]): void; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.noop + */ + noop(...args: any[]): _.LoDashExplicitWrapper; + } + + //_.nthArg + interface LoDashStatic { + /** + * Creates a function that returns its nth argument. + * + * @param n The index of the argument to return. + * @return Returns the new function. + */ + nthArg(n?: number): TResult; + } + + interface LoDashImplicitWrapper { + /** + * @see _.nthArg + */ + nthArg(): LoDashImplicitObjectWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.nthArg + */ + nthArg(): LoDashExplicitObjectWrapper; + } + + //_.over + interface LoDashStatic { + /** + * Creates a function that invokes iteratees with the arguments provided to the created function and returns + * their results. + * + * @param iteratees The iteratees to invoke. + * @return Returns the new function. + */ + over(...iteratees: (Function|Function[])[]): (...args: any[]) => TResult[]; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.over + */ + over(...iteratees: (Function|Function[])[]): LoDashImplicitObjectWrapper<(...args: any[]) => TResult[]>; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.over + */ + over(...iteratees: (Function|Function[])[]): LoDashImplicitObjectWrapper<(...args: any[]) => TResult[]>; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.over + */ + over(...iteratees: (Function|Function[])[]): LoDashExplicitObjectWrapper<(...args: any[]) => TResult[]>; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.over + */ + over(...iteratees: (Function|Function[])[]): LoDashExplicitObjectWrapper<(...args: any[]) => TResult[]>; + } + + //_.overEvery + interface LoDashStatic { + /** + * Creates a function that checks if all of the predicates return truthy when invoked with the arguments + * provided to the created function. + * + * @param predicates The predicates to check. + * @return Returns the new function. + */ + overEvery(...predicates: (Function|Function[])[]): (...args: any[]) => boolean; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.overEvery + */ + overEvery(...predicates: (Function|Function[])[]): LoDashImplicitObjectWrapper<(...args: any[]) => boolean>; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.overEvery + */ + overEvery(...predicates: (Function|Function[])[]): LoDashImplicitObjectWrapper<(...args: any[]) => boolean>; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.overEvery + */ + overEvery(...predicates: (Function|Function[])[]): LoDashExplicitObjectWrapper<(...args: any[]) => boolean>; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.overEvery + */ + overEvery(...predicates: (Function|Function[])[]): LoDashExplicitObjectWrapper<(...args: any[]) => boolean>; + } + + //_.overSome + interface LoDashStatic { + /** + * Creates a function that checks if any of the predicates return truthy when invoked with the arguments + * provided to the created function. + * + * @param predicates The predicates to check. + * @return Returns the new function. + */ + overSome(...predicates: (Function|Function[])[]): (...args: any[]) => boolean; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.overSome + */ + overSome(...predicates: (Function|Function[])[]): LoDashImplicitObjectWrapper<(...args: any[]) => boolean>; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.overSome + */ + overSome(...predicates: (Function|Function[])[]): LoDashImplicitObjectWrapper<(...args: any[]) => boolean>; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.overSome + */ + overSome(...predicates: (Function|Function[])[]): LoDashExplicitObjectWrapper<(...args: any[]) => boolean>; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.overSome + */ + overSome(...predicates: (Function|Function[])[]): LoDashExplicitObjectWrapper<(...args: any[]) => boolean>; + } + + //_.property + interface LoDashStatic { + /** + * Creates a function that returns the property value at path on a given object. + * + * @param path The path of the property to get. + * @return Returns the new function. + */ + property(path: StringRepresentable|StringRepresentable[]): (obj: TObj) => TResult; + } + + interface LoDashImplicitWrapper { + /** + * @see _.property + */ + property(): LoDashImplicitObjectWrapper<(obj: TObj) => TResult>; + } + + interface LoDashImplicitArrayWrapper { + /** + * @see _.property + */ + property(): LoDashImplicitObjectWrapper<(obj: TObj) => TResult>; + } + + interface LoDashExplicitWrapper { + /** + * @see _.property + */ + property(): LoDashExplicitObjectWrapper<(obj: TObj) => TResult>; + } + + interface LoDashExplicitArrayWrapper { + /** + * @see _.property + */ + property(): LoDashExplicitObjectWrapper<(obj: TObj) => TResult>; + } + + //_.propertyOf + interface LoDashStatic { + /** + * The opposite of _.property; this method creates a function that returns the property value at a given path + * on object. + * + * @param object The object to query. + * @return Returns the new function. + */ + propertyOf(object: T): (path: string|string[]) => any; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.propertyOf + */ + propertyOf(): LoDashImplicitObjectWrapper<(path: string|string[]) => any>; + } + + interface LoDashExplicitObjectWrapper { + /** + * @see _.propertyOf + */ + propertyOf(): LoDashExplicitObjectWrapper<(path: string|string[]) => any>; + } + + //_.range + interface LoDashStatic { + /** + * Creates an array of numbers (positive and/or negative) progressing from start up to, but not including, end. + * If end is not specified it’s set to start with start then set to 0. If end is less than start a zero-length + * range is created unless a negative step is specified. + * + * @param start The start of the range. + * @param end The end of the range. + * @param step The value to increment or decrement by. + * @return Returns a new range array. + */ + range( + start: number, + end: number, + step?: number + ): number[]; + + /** + * @see _.range + */ + range( + end: number, + step?: number + ): number[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.range + */ + range( + end?: number, + step?: number + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.range + */ + range( + end?: number, + step?: number + ): LoDashExplicitArrayWrapper; + } + + //_.rangeRight + interface LoDashStatic { + /** + * This method is like `_.range` except that it populates values in + * descending order. + * + * @static + * @memberOf _ + * @category Util + * @param {number} [start=0] The start of the range. + * @param {number} end The end of the range. + * @param {number} [step=1] The value to increment or decrement by. + * @returns {Array} Returns the new array of numbers. + * @example + * + * _.rangeRight(4); + * // => [3, 2, 1, 0] + * + * _.rangeRight(-4); + * // => [-3, -2, -1, 0] + * + * _.rangeRight(1, 5); + * // => [4, 3, 2, 1] + * + * _.rangeRight(0, 20, 5); + * // => [15, 10, 5, 0] + * + * _.rangeRight(0, -4, -1); + * // => [-3, -2, -1, 0] + * + * _.rangeRight(1, 4, 0); + * // => [1, 1, 1] + * + * _.rangeRight(0); + * // => [] + */ + rangeRight( + start: number, + end: number, + step?: number + ): number[]; + + /** + * @see _.rangeRight + */ + rangeRight( + end: number, + step?: number + ): number[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.rangeRight + */ + rangeRight( + end?: number, + step?: number + ): LoDashImplicitArrayWrapper; + } + + interface LoDashExplicitWrapper { + /** + * @see _.rangeRight + */ + rangeRight( + end?: number, + step?: number + ): LoDashExplicitArrayWrapper; + } + + //_.runInContext + interface LoDashStatic { + /** + * Create a new pristine lodash function using the given context object. + * + * @param context The context object. + * @return Returns a new lodash function. + */ + runInContext(context?: Object): typeof _; + } + + interface LoDashImplicitObjectWrapper { + /** + * @see _.runInContext + */ + runInContext(): typeof _; + } + + //_.times + interface LoDashStatic { + /** + * Invokes the iteratee function n times, returning an array of the results of each invocation. The iteratee + * is invoked with one argument; (index). + * + * @param n The number of times to invoke iteratee. + * @param iteratee The function invoked per iteration. + * @return Returns the array of results. + */ + times( + n: number, + iteratee: (num: number) => TResult + ): TResult[]; + + /** + * @see _.times + */ + times(n: number): number[]; + } + + interface LoDashImplicitWrapper { + /** + * @see _.times + */ + times( + iteratee: (num: number) => TResult + ): TResult[]; + + /** + * @see _.times + */ + times(): number[]; + } + + interface LoDashExplicitWrapper { + /** + * @see _.times + */ + times( + iteratee: (num: number) => TResult + ): LoDashExplicitArrayWrapper; + + /** + * @see _.times + */ + times(): LoDashExplicitArrayWrapper; + } + + //_.toPath + interface LoDashStatic { + /** + * Converts `value` to a property path array. + * + * @static + * @memberOf _ + * @category Util + * @param {*} value The value to convert. + * @returns {Array} Returns the new property path array. + * @example + * + * _.toPath('a.b.c'); + * // => ['a', 'b', 'c'] + * + * _.toPath('a[0].b.c'); + * // => ['a', '0', 'b', 'c'] + * + * var path = ['a', 'b', 'c'], + * newPath = _.toPath(path); + * + * console.log(newPath); + * // => ['a', 'b', 'c'] + * + * console.log(path === newPath); + * // => false + */ + toPath(value: any): string[]; + } + + interface LoDashImplicitWrapperBase { + /** + * @see _.toPath + */ + toPath(): LoDashImplicitWrapper; + } + + interface LoDashExplicitWrapperBase { + /** + * @see _.toPath + */ + toPath(): LoDashExplicitWrapper; + } + + //_.uniqueId + interface LoDashStatic { + /** + * Generates a unique ID. If prefix is provided the ID is appended to it. + * + * @param prefix The value to prefix the ID with. + * @return Returns the unique ID. + */ + uniqueId(prefix?: string): string; + } + + interface LoDashImplicitWrapper { + /** + * @see _.uniqueId + */ + uniqueId(): string; + } + + interface LoDashExplicitWrapper { + /** + * @see _.uniqueId + */ + uniqueId(): LoDashExplicitWrapper; + } + + interface ListIterator { + (value: T, index: number, collection: List): TResult; + } + + interface DictionaryIterator { + (value: T, key?: string, collection?: Dictionary): TResult; + } + + interface NumericDictionaryIterator { + (value: T, key?: number, collection?: Dictionary): TResult; + } + + interface ObjectIterator { + (element: T, key?: string, collection?: any): TResult; + } + + interface StringIterator { + (char: string, index?: number, string?: string): TResult; + } + + interface MemoVoidIterator { + (prev: TResult, curr: T, indexOrKey?: any, list?: T[]): void; + } + interface MemoIterator { + (prev: TResult, curr: T, indexOrKey?: any, list?: T[]): TResult; + } + + interface MemoVoidArrayIterator { + (acc: TResult, curr: T, index?: number, arr?: T[]): void; + } + interface MemoVoidDictionaryIterator { + (acc: TResult, curr: T, key?: string, dict?: Dictionary): void; + } + + //interface Collection {} + + // Common interface between Arrays and jQuery objects + interface List { + [index: number]: T; + length: number; + } + + interface Dictionary { + [index: string]: T; + } + + interface NumericDictionary { + [index: number]: T; + } + + interface StringRepresentable { + toString(): string; + } + + interface Cancelable { + cancel(): void; + } +} + +// Named exports + +declare module "lodash/after" { + const after: typeof _.after; + export = after; +} + + +declare module "lodash/ary" { + const ary: typeof _.ary; + export = ary; +} + + +declare module "lodash/assign" { + const assign: typeof _.assign; + export = assign; +} + + +declare module "lodash/assignIn" { + const assignIn: typeof _.assignIn; + export = assignIn; +} + + +declare module "lodash/assignInWith" { + const assignInWith: typeof _.assignInWith; + export = assignInWith; +} + + +declare module "lodash/assignWith" { + const assignWith: typeof _.assignWith; + export = assignWith; +} + + +declare module "lodash/at" { + const at: typeof _.at; + export = at; +} + + +declare module "lodash/before" { + const before: typeof _.before; + export = before; +} + + +declare module "lodash/bind" { + const bind: typeof _.bind; + export = bind; +} + + +declare module "lodash/bindAll" { + const bindAll: typeof _.bindAll; + export = bindAll; +} + + +declare module "lodash/bindKey" { + const bindKey: typeof _.bindKey; + export = bindKey; +} + + +declare module "lodash/castArray" { + const castArray: typeof _.castArray; + export = castArray; +} + + +declare module "lodash/chain" { + const chain: typeof _.chain; + export = chain; +} + + +declare module "lodash/chunk" { + const chunk: typeof _.chunk; + export = chunk; +} + + +declare module "lodash/compact" { + const compact: typeof _.compact; + export = compact; +} + + +declare module "lodash/concat" { + const concat: typeof _.concat; + export = concat; +} + +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/cond" { + const cond: typeof _.cond; + export = cond; +} +*/ + +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/conforms" { + const conforms: typeof _.conforms; + export = conforms; +} +*/ + +declare module "lodash/constant" { + const constant: typeof _.constant; + export = constant; +} + + +declare module "lodash/countBy" { + const countBy: typeof _.countBy; + export = countBy; +} + + +declare module "lodash/create" { + const create: typeof _.create; + export = create; +} + + +declare module "lodash/curry" { + const curry: typeof _.curry; + export = curry; +} + + +declare module "lodash/curryRight" { + const curryRight: typeof _.curryRight; + export = curryRight; +} + + +declare module "lodash/debounce" { + const debounce: typeof _.debounce; + export = debounce; +} + + +declare module "lodash/defaults" { + const defaults: typeof _.defaults; + export = defaults; +} + + +declare module "lodash/defaultsDeep" { + const defaultsDeep: typeof _.defaultsDeep; + export = defaultsDeep; +} + + +declare module "lodash/defer" { + const defer: typeof _.defer; + export = defer; +} + + +declare module "lodash/delay" { + const delay: typeof _.delay; + export = delay; +} + + +declare module "lodash/difference" { + const difference: typeof _.difference; + export = difference; +} + + +declare module "lodash/differenceBy" { + const differenceBy: typeof _.differenceBy; + export = differenceBy; +} + + +declare module "lodash/differenceWith" { + const differenceWith: typeof _.differenceWith; + export = differenceWith; +} + + +declare module "lodash/drop" { + const drop: typeof _.drop; + export = drop; +} + + +declare module "lodash/dropRight" { + const dropRight: typeof _.dropRight; + export = dropRight; +} + + +declare module "lodash/dropRightWhile" { + const dropRightWhile: typeof _.dropRightWhile; + export = dropRightWhile; +} + + +declare module "lodash/dropWhile" { + const dropWhile: typeof _.dropWhile; + export = dropWhile; +} + + +declare module "lodash/fill" { + const fill: typeof _.fill; + export = fill; +} + + +declare module "lodash/filter" { + const filter: typeof _.filter; + export = filter; +} + + +declare module "lodash/flatMap" { + const flatMap: typeof _.flatMap; + export = flatMap; +} + +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/flatMapDeep" { + const flatMapDeep: typeof _.flatMapDeep; + export = flatMapDeep; +} +*/ +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/flatMapDepth" { + const flatMapDepth: typeof _.flatMapDepth; + export = flatMapDepth; +} +*/ + +declare module "lodash/flatten" { + const flatten: typeof _.flatten; + export = flatten; +} + + +declare module "lodash/flattenDeep" { + const flattenDeep: typeof _.flattenDeep; + export = flattenDeep; +} + +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/flattenDepth" { + const flattenDepth: typeof _.flattenDepth; + export = flattenDepth; +} +*/ + +declare module "lodash/flip" { + const flip: typeof _.flip; + export = flip; +} + + +declare module "lodash/flow" { + const flow: typeof _.flow; + export = flow; +} + + +declare module "lodash/flowRight" { + const flowRight: typeof _.flowRight; + export = flowRight; +} + + +declare module "lodash/fromPairs" { + const fromPairs: typeof _.fromPairs; + export = fromPairs; +} + + +declare module "lodash/functions" { + const functions: typeof _.functions; + export = functions; +} + + +declare module "lodash/functionsIn" { + const functionsIn: typeof _.functionsIn; + export = functionsIn; +} + + +declare module "lodash/groupBy" { + const groupBy: typeof _.groupBy; + export = groupBy; +} + + +declare module "lodash/initial" { + const initial: typeof _.initial; + export = initial; +} + + +declare module "lodash/intersection" { + const intersection: typeof _.intersection; + export = intersection; +} + + +declare module "lodash/intersectionBy" { + const intersectionBy: typeof _.intersectionBy; + export = intersectionBy; +} + + +declare module "lodash/intersectionWith" { + const intersectionWith: typeof _.intersectionWith; + export = intersectionWith; +} + + +declare module "lodash/invert" { + const invert: typeof _.invert; + export = invert; +} + + +declare module "lodash/invertBy" { + const invertBy: typeof _.invertBy; + export = invertBy; +} + + +declare module "lodash/invokeMap" { + const invokeMap: typeof _.invokeMap; + export = invokeMap; +} + + +declare module "lodash/iteratee" { + const iteratee: typeof _.iteratee; + export = iteratee; +} + + +declare module "lodash/keyBy" { + const keyBy: typeof _.keyBy; + export = keyBy; +} + + +declare module "lodash/keys" { + const keys: typeof _.keys; + export = keys; +} + + +declare module "lodash/keysIn" { + const keysIn: typeof _.keysIn; + export = keysIn; +} + + +declare module "lodash/map" { + const map: typeof _.map; + export = map; +} + + +declare module "lodash/mapKeys" { + const mapKeys: typeof _.mapKeys; + export = mapKeys; +} + + +declare module "lodash/mapValues" { + const mapValues: typeof _.mapValues; + export = mapValues; +} + + +declare module "lodash/matches" { + const matches: typeof _.matches; + export = matches; +} + + +declare module "lodash/matchesProperty" { + const matchesProperty: typeof _.matchesProperty; + export = matchesProperty; +} + + +declare module "lodash/memoize" { + const memoize: typeof _.memoize; + export = memoize; +} + + +declare module "lodash/merge" { + const merge: typeof _.merge; + export = merge; +} + + +declare module "lodash/mergeWith" { + const mergeWith: typeof _.mergeWith; + export = mergeWith; +} + + +declare module "lodash/method" { + const method: typeof _.method; + export = method; +} + + +declare module "lodash/methodOf" { + const methodOf: typeof _.methodOf; + export = methodOf; +} + + +declare module "lodash/mixin" { + const mixin: typeof _.mixin; + export = mixin; +} + + +declare module "lodash/negate" { + const negate: typeof _.negate; + export = negate; +} + + +declare module "lodash/nthArg" { + const nthArg: typeof _.nthArg; + export = nthArg; +} + + +declare module "lodash/omit" { + const omit: typeof _.omit; + export = omit; +} + + +declare module "lodash/omitBy" { + const omitBy: typeof _.omitBy; + export = omitBy; +} + + +declare module "lodash/once" { + const once: typeof _.once; + export = once; +} + + +declare module "lodash/orderBy" { + const orderBy: typeof _.orderBy; + export = orderBy; +} + + +declare module "lodash/over" { + const over: typeof _.over; + export = over; +} + + +declare module "lodash/overArgs" { + const overArgs: typeof _.overArgs; + export = overArgs; +} + + +declare module "lodash/overEvery" { + const overEvery: typeof _.overEvery; + export = overEvery; +} + + +declare module "lodash/overSome" { + const overSome: typeof _.overSome; + export = overSome; +} + + +declare module "lodash/partial" { + const partial: typeof _.partial; + export = partial; +} + + +declare module "lodash/partialRight" { + const partialRight: typeof _.partialRight; + export = partialRight; +} + + +declare module "lodash/partition" { + const partition: typeof _.partition; + export = partition; +} + + +declare module "lodash/pick" { + const pick: typeof _.pick; + export = pick; +} + + +declare module "lodash/pickBy" { + const pickBy: typeof _.pickBy; + export = pickBy; +} + + +declare module "lodash/property" { + const property: typeof _.property; + export = property; +} + + +declare module "lodash/propertyOf" { + const propertyOf: typeof _.propertyOf; + export = propertyOf; +} + + +declare module "lodash/pull" { + const pull: typeof _.pull; + export = pull; +} + + +declare module "lodash/pullAll" { + const pullAll: typeof _.pullAll; + export = pullAll; +} + + +declare module "lodash/pullAllBy" { + const pullAllBy: typeof _.pullAllBy; + export = pullAllBy; +} + +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/pullAllWith" { + const pullAllWith: typeof _.pullAllWith; + export = pullAllWith; +} +*/ + +declare module "lodash/pullAt" { + const pullAt: typeof _.pullAt; + export = pullAt; +} + + +declare module "lodash/range" { + const range: typeof _.range; + export = range; +} + + +declare module "lodash/rangeRight" { + const rangeRight: typeof _.rangeRight; + export = rangeRight; +} + + +declare module "lodash/rearg" { + const rearg: typeof _.rearg; + export = rearg; +} + + +declare module "lodash/reject" { + const reject: typeof _.reject; + export = reject; +} + + +declare module "lodash/remove" { + const remove: typeof _.remove; + export = remove; +} + + +declare module "lodash/rest" { + const rest: typeof _.rest; + export = rest; +} + + +declare module "lodash/reverse" { + const reverse: typeof _.reverse; + export = reverse; +} + + +declare module "lodash/sampleSize" { + const sampleSize: typeof _.sampleSize; + export = sampleSize; +} + + +declare module "lodash/set" { + const set: typeof _.set; + export = set; +} + + +declare module "lodash/setWith" { + const setWith: typeof _.setWith; + export = setWith; +} + + +declare module "lodash/shuffle" { + const shuffle: typeof _.shuffle; + export = shuffle; +} + + +declare module "lodash/slice" { + const slice: typeof _.slice; + export = slice; +} + + +declare module "lodash/sortBy" { + const sortBy: typeof _.sortBy; + export = sortBy; +} + + +declare module "lodash/sortedUniq" { + const sortedUniq: typeof _.sortedUniq; + export = sortedUniq; +} + + +declare module "lodash/sortedUniqBy" { + const sortedUniqBy: typeof _.sortedUniqBy; + export = sortedUniqBy; +} + + +declare module "lodash/split" { + const split: typeof _.split; + export = split; +} + + +declare module "lodash/spread" { + const spread: typeof _.spread; + export = spread; +} + + +declare module "lodash/tail" { + const tail: typeof _.tail; + export = tail; +} + + +declare module "lodash/take" { + const take: typeof _.take; + export = take; +} + + +declare module "lodash/takeRight" { + const takeRight: typeof _.takeRight; + export = takeRight; +} + + +declare module "lodash/takeRightWhile" { + const takeRightWhile: typeof _.takeRightWhile; + export = takeRightWhile; +} + + +declare module "lodash/takeWhile" { + const takeWhile: typeof _.takeWhile; + export = takeWhile; +} + + +declare module "lodash/tap" { + const tap: typeof _.tap; + export = tap; +} + + +declare module "lodash/throttle" { + const throttle: typeof _.throttle; + export = throttle; +} + + +declare module "lodash/thru" { + const thru: typeof _.thru; + export = thru; +} + + +declare module "lodash/toArray" { + const toArray: typeof _.toArray; + export = toArray; +} + + +declare module "lodash/toPairs" { + const toPairs: typeof _.toPairs; + export = toPairs; +} + + +declare module "lodash/toPairsIn" { + const toPairsIn: typeof _.toPairsIn; + export = toPairsIn; +} + + +declare module "lodash/toPath" { + const toPath: typeof _.toPath; + export = toPath; +} + + +declare module "lodash/toPlainObject" { + const toPlainObject: typeof _.toPlainObject; + export = toPlainObject; +} + + +declare module "lodash/transform" { + const transform: typeof _.transform; + export = transform; +} + + +declare module "lodash/unary" { + const unary: typeof _.unary; + export = unary; +} + + +declare module "lodash/union" { + const union: typeof _.union; + export = union; +} + + +declare module "lodash/unionBy" { + const unionBy: typeof _.unionBy; + export = unionBy; +} + + +declare module "lodash/unionWith" { + const unionWith: typeof _.unionWith; + export = unionWith; +} + + +declare module "lodash/uniq" { + const uniq: typeof _.uniq; + export = uniq; +} + + +declare module "lodash/uniqBy" { + const uniqBy: typeof _.uniqBy; + export = uniqBy; +} + + +declare module "lodash/uniqWith" { + const uniqWith: typeof _.uniqWith; + export = uniqWith; +} + + +declare module "lodash/unset" { + const unset: typeof _.unset; + export = unset; +} + + +declare module "lodash/unzip" { + const unzip: typeof _.unzip; + export = unzip; +} + + +declare module "lodash/unzipWith" { + const unzipWith: typeof _.unzipWith; + export = unzipWith; +} + + +declare module "lodash/update" { + const update: typeof _.update; + export = update; +} + +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/updateWith" { + const updateWith: typeof _.updateWith; + export = updateWith; +} +*/ + +declare module "lodash/values" { + const values: typeof _.values; + export = values; +} + + +declare module "lodash/valuesIn" { + const valuesIn: typeof _.valuesIn; + export = valuesIn; +} + + +declare module "lodash/without" { + const without: typeof _.without; + export = without; +} + + +declare module "lodash/words" { + const words: typeof _.words; + export = words; +} + + +declare module "lodash/wrap" { + const wrap: typeof _.wrap; + export = wrap; +} + + +declare module "lodash/xor" { + const xor: typeof _.xor; + export = xor; +} + + +declare module "lodash/xorBy" { + const xorBy: typeof _.xorBy; + export = xorBy; +} + + +declare module "lodash/xorWith" { + const xorWith: typeof _.xorWith; + export = xorWith; +} + + +declare module "lodash/zip" { + const zip: typeof _.zip; + export = zip; +} + + +declare module "lodash/zipObject" { + const zipObject: typeof _.zipObject; + export = zipObject; +} + +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/zipObjectDeep" { + const zipObjectDeep: typeof _.zipObjectDeep; + export = zipObjectDeep; +} +*/ + + +declare module "lodash/zipWith" { + const zipWith: typeof _.zipWith; + export = zipWith; +} + +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/entries" { + const entries: typeof _.entries; + export = entries; +} +*/ +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/entriesIn" { + const entriesIn: typeof _.entriesIn; + export = entriesIn; +} +*/ + + +declare module "lodash/extend" { + const extend: typeof _.extend; + export = extend; +} + +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/extendWith" { + const extendWith: typeof _.extendWith; + export = extendWith; +} +*/ + +declare module "lodash/add" { + const add: typeof _.add; + export = add; +} + + +declare module "lodash/attempt" { + const attempt: typeof _.attempt; + export = attempt; +} + + +declare module "lodash/camelCase" { + const camelCase: typeof _.camelCase; + export = camelCase; +} + + +declare module "lodash/capitalize" { + const capitalize: typeof _.capitalize; + export = capitalize; +} + + +declare module "lodash/ceil" { + const ceil: typeof _.ceil; + export = ceil; +} + + +declare module "lodash/clamp" { + const clamp: typeof _.clamp; + export = clamp; +} + + +declare module "lodash/clone" { + const clone: typeof _.clone; + export = clone; +} + + +declare module "lodash/cloneDeep" { + const cloneDeep: typeof _.cloneDeep; + export = cloneDeep; +} + + +declare module "lodash/cloneDeepWith" { + const cloneDeepWith: typeof _.cloneDeepWith; + export = cloneDeepWith; +} + + +declare module "lodash/cloneWith" { + const cloneWith: typeof _.cloneWith; + export = cloneWith; +} + + +declare module "lodash/deburr" { + const deburr: typeof _.deburr; + export = deburr; +} + +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/divide" { + const divide: typeof _.divide; + export = divide; +} +*/ + +declare module "lodash/endsWith" { + const endsWith: typeof _.endsWith; + export = endsWith; +} + + +declare module "lodash/eq" { + const eq: typeof _.eq; + export = eq; +} + + +declare module "lodash/escape" { + const escape: typeof _.escape; + export = escape; +} + + +declare module "lodash/escapeRegExp" { + const escapeRegExp: typeof _.escapeRegExp; + export = escapeRegExp; +} + + +declare module "lodash/every" { + const every: typeof _.every; + export = every; +} + + +declare module "lodash/find" { + const find: typeof _.find; + export = find; +} + + +declare module "lodash/findIndex" { + const findIndex: typeof _.findIndex; + export = findIndex; +} + + +declare module "lodash/findKey" { + const findKey: typeof _.findKey; + export = findKey; +} + + +declare module "lodash/findLast" { + const findLast: typeof _.findLast; + export = findLast; +} + + +declare module "lodash/findLastIndex" { + const findLastIndex: typeof _.findLastIndex; + export = findLastIndex; +} + + +declare module "lodash/findLastKey" { + const findLastKey: typeof _.findLastKey; + export = findLastKey; +} + + +declare module "lodash/floor" { + const floor: typeof _.floor; + export = floor; +} + + +declare module "lodash/forEach" { + const forEach: typeof _.forEach; + export = forEach; +} + + +declare module "lodash/forEachRight" { + const forEachRight: typeof _.forEachRight; + export = forEachRight; +} + + +declare module "lodash/forIn" { + const forIn: typeof _.forIn; + export = forIn; +} + + +declare module "lodash/forInRight" { + const forInRight: typeof _.forInRight; + export = forInRight; +} + + +declare module "lodash/forOwn" { + const forOwn: typeof _.forOwn; + export = forOwn; +} + + +declare module "lodash/forOwnRight" { + const forOwnRight: typeof _.forOwnRight; + export = forOwnRight; +} + + +declare module "lodash/get" { + const get: typeof _.get; + export = get; +} + + +declare module "lodash/gt" { + const gt: typeof _.gt; + export = gt; +} + + +declare module "lodash/gte" { + const gte: typeof _.gte; + export = gte; +} + + +declare module "lodash/has" { + const has: typeof _.has; + export = has; +} + + +declare module "lodash/hasIn" { + const hasIn: typeof _.hasIn; + export = hasIn; +} + + +declare module "lodash/head" { + const head: typeof _.head; + export = head; +} + + +declare module "lodash/identity" { + const identity: typeof _.identity; + export = identity; +} + + +declare module "lodash/includes" { + const includes: typeof _.includes; + export = includes; +} + + +declare module "lodash/indexOf" { + const indexOf: typeof _.indexOf; + export = indexOf; +} + + +declare module "lodash/inRange" { + const inRange: typeof _.inRange; + export = inRange; +} + + +declare module "lodash/invoke" { + const invoke: typeof _.invoke; + export = invoke; +} + + +declare module "lodash/isArguments" { + const isArguments: typeof _.isArguments; + export = isArguments; +} + + +declare module "lodash/isArray" { + const isArray: typeof _.isArray; + export = isArray; +} + + +declare module "lodash/isArrayBuffer" { + const isArrayBuffer: typeof _.isArrayBuffer; + export = isArrayBuffer; +} + + +declare module "lodash/isArrayLike" { + const isArrayLike: typeof _.isArrayLike; + export = isArrayLike; +} + + +declare module "lodash/isArrayLikeObject" { + const isArrayLikeObject: typeof _.isArrayLikeObject; + export = isArrayLikeObject; +} + + +declare module "lodash/isBoolean" { + const isBoolean: typeof _.isBoolean; + export = isBoolean; +} + + +declare module "lodash/isBuffer" { + const isBuffer: typeof _.isBuffer; + export = isBuffer; +} + + +declare module "lodash/isDate" { + const isDate: typeof _.isDate; + export = isDate; +} + + +declare module "lodash/isElement" { + const isElement: typeof _.isElement; + export = isElement; +} + + +declare module "lodash/isEmpty" { + const isEmpty: typeof _.isEmpty; + export = isEmpty; +} + + +declare module "lodash/isEqual" { + const isEqual: typeof _.isEqual; + export = isEqual; +} + + +declare module "lodash/isEqualWith" { + const isEqualWith: typeof _.isEqualWith; + export = isEqualWith; +} + + +declare module "lodash/isError" { + const isError: typeof _.isError; + export = isError; +} + + +declare module "lodash/isFinite" { + const isFinite: typeof _.isFinite; + export = isFinite; +} + + +declare module "lodash/isFunction" { + const isFunction: typeof _.isFunction; + export = isFunction; +} + + +declare module "lodash/isInteger" { + const isInteger: typeof _.isInteger; + export = isInteger; +} + + +declare module "lodash/isLength" { + const isLength: typeof _.isLength; + export = isLength; +} + + +declare module "lodash/isMap" { + const isMap: typeof _.isMap; + export = isMap; +} + + +declare module "lodash/isMatch" { + const isMatch: typeof _.isMatch; + export = isMatch; +} + + +declare module "lodash/isMatchWith" { + const isMatchWith: typeof _.isMatchWith; + export = isMatchWith; +} + + +declare module "lodash/isNaN" { + const isNaN: typeof _.isNaN; + export = isNaN; +} + + +declare module "lodash/isNative" { + const isNative: typeof _.isNative; + export = isNative; +} + + +declare module "lodash/isNil" { + const isNil: typeof _.isNil; + export = isNil; +} + + +declare module "lodash/isNull" { + const isNull: typeof _.isNull; + export = isNull; +} + + +declare module "lodash/isNumber" { + const isNumber: typeof _.isNumber; + export = isNumber; +} + + +declare module "lodash/isObject" { + const isObject: typeof _.isObject; + export = isObject; +} + + +declare module "lodash/isObjectLike" { + const isObjectLike: typeof _.isObjectLike; + export = isObjectLike; +} + + +declare module "lodash/isPlainObject" { + const isPlainObject: typeof _.isPlainObject; + export = isPlainObject; +} + + +declare module "lodash/isRegExp" { + const isRegExp: typeof _.isRegExp; + export = isRegExp; +} + + +declare module "lodash/isSafeInteger" { + const isSafeInteger: typeof _.isSafeInteger; + export = isSafeInteger; +} + + +declare module "lodash/isSet" { + const isSet: typeof _.isSet; + export = isSet; +} + + +declare module "lodash/isString" { + const isString: typeof _.isString; + export = isString; +} + + +declare module "lodash/isSymbol" { + const isSymbol: typeof _.isSymbol; + export = isSymbol; +} + + +declare module "lodash/isTypedArray" { + const isTypedArray: typeof _.isTypedArray; + export = isTypedArray; +} + + +declare module "lodash/isUndefined" { + const isUndefined: typeof _.isUndefined; + export = isUndefined; +} + + +declare module "lodash/isWeakMap" { + const isWeakMap: typeof _.isWeakMap; + export = isWeakMap; +} + + +declare module "lodash/isWeakSet" { + const isWeakSet: typeof _.isWeakSet; + export = isWeakSet; +} + + +declare module "lodash/join" { + const join: typeof _.join; + export = join; +} + + +declare module "lodash/kebabCase" { + const kebabCase: typeof _.kebabCase; + export = kebabCase; +} + + +declare module "lodash/last" { + const last: typeof _.last; + export = last; +} + + +declare module "lodash/lastIndexOf" { + const lastIndexOf: typeof _.lastIndexOf; + export = lastIndexOf; +} + + +declare module "lodash/lowerCase" { + const lowerCase: typeof _.lowerCase; + export = lowerCase; +} + + +declare module "lodash/lowerFirst" { + const lowerFirst: typeof _.lowerFirst; + export = lowerFirst; +} + + +declare module "lodash/lt" { + const lt: typeof _.lt; + export = lt; +} + + +declare module "lodash/lte" { + const lte: typeof _.lte; + export = lte; +} + + +declare module "lodash/max" { + const max: typeof _.max; + export = max; +} + + +declare module "lodash/maxBy" { + const maxBy: typeof _.maxBy; + export = maxBy; +} + + +declare module "lodash/mean" { + const mean: typeof _.mean; + export = mean; +} + +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/meanBy" { + const meanBy: typeof _.meanBy; + export = meanBy; +} +*/ + +declare module "lodash/min" { + const min: typeof _.min; + export = min; +} + + +declare module "lodash/minBy" { + const minBy: typeof _.minBy; + export = minBy; +} + +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/multiply" { + const multiply: typeof _.multiply; + export = multiply; +} +*/ + +/** +* uncoment it if definition exists +*/ +/* +declare module "lodash/nth" { + const nth: typeof _.nth; + export = nth; +} +*/ + +declare module "lodash/noConflict" { + const noConflict: typeof _.noConflict; + export = noConflict; +} + + +declare module "lodash/noop" { + const noop: typeof _.noop; + export = noop; +} + + +declare module "lodash/now" { + const now: typeof _.now; + export = now; +} + + +declare module "lodash/pad" { + const pad: typeof _.pad; + export = pad; +} + + +declare module "lodash/padEnd" { + const padEnd: typeof _.padEnd; + export = padEnd; +} + + +declare module "lodash/padStart" { + const padStart: typeof _.padStart; + export = padStart; +} + + +declare module "lodash/parseInt" { + const parseInt: typeof _.parseInt; + export = parseInt; +} + + +declare module "lodash/random" { + const random: typeof _.random; + export = random; +} + + +declare module "lodash/reduce" { + const reduce: typeof _.reduce; + export = reduce; +} + + +declare module "lodash/reduceRight" { + const reduceRight: typeof _.reduceRight; + export = reduceRight; +} + + +declare module "lodash/repeat" { + const repeat: typeof _.repeat; + export = repeat; +} + + +declare module "lodash/replace" { + const replace: typeof _.replace; + export = replace; +} + + +declare module "lodash/result" { + const result: typeof _.result; + export = result; +} + + +declare module "lodash/round" { + const round: typeof _.round; + export = round; +} + + +declare module "lodash/runInContext" { + const runInContext: typeof _.runInContext; + export = runInContext; +} + + +declare module "lodash/sample" { + const sample: typeof _.sample; + export = sample; +} + + +declare module "lodash/size" { + const size: typeof _.size; + export = size; +} + + +declare module "lodash/snakeCase" { + const snakeCase: typeof _.snakeCase; + export = snakeCase; +} + + +declare module "lodash/some" { + const some: typeof _.some; + export = some; +} + + +declare module "lodash/sortedIndex" { + const sortedIndex: typeof _.sortedIndex; + export = sortedIndex; +} + + +declare module "lodash/sortedIndexBy" { + const sortedIndexBy: typeof _.sortedIndexBy; + export = sortedIndexBy; +} + + +declare module "lodash/sortedIndexOf" { + const sortedIndexOf: typeof _.sortedIndexOf; + export = sortedIndexOf; +} + + +declare module "lodash/sortedLastIndex" { + const sortedLastIndex: typeof _.sortedLastIndex; + export = sortedLastIndex; +} + + +declare module "lodash/sortedLastIndexBy" { + const sortedLastIndexBy: typeof _.sortedLastIndexBy; + export = sortedLastIndexBy; +} + + +declare module "lodash/sortedLastIndexOf" { + const sortedLastIndexOf: typeof _.sortedLastIndexOf; + export = sortedLastIndexOf; +} + + +declare module "lodash/startCase" { + const startCase: typeof _.startCase; + export = startCase; +} + + +declare module "lodash/startsWith" { + const startsWith: typeof _.startsWith; + export = startsWith; +} + + +declare module "lodash/subtract" { + const subtract: typeof _.subtract; + export = subtract; +} + + +declare module "lodash/sum" { + const sum: typeof _.sum; + export = sum; +} + + +declare module "lodash/sumBy" { + const sumBy: typeof _.sumBy; + export = sumBy; +} + + +declare module "lodash/template" { + const template: typeof _.template; + export = template; +} + + +declare module "lodash/times" { + const times: typeof _.times; + export = times; +} + + +declare module "lodash/toInteger" { + const toInteger: typeof _.toInteger; + export = toInteger; +} + + +declare module "lodash/toLength" { + const toLength: typeof _.toLength; + export = toLength; +} + + +declare module "lodash/toLower" { + const toLower: typeof _.toLower; + export = toLower; +} + + +declare module "lodash/toNumber" { + const toNumber: typeof _.toNumber; + export = toNumber; +} + + +declare module "lodash/toSafeInteger" { + const toSafeInteger: typeof _.toSafeInteger; + export = toSafeInteger; +} + + +declare module "lodash/toString" { + const toString: typeof _.toString; + export = toString; +} + + +declare module "lodash/toUpper" { + const toUpper: typeof _.toUpper; + export = toUpper; +} + + +declare module "lodash/trim" { + const trim: typeof _.trim; + export = trim; +} + + +declare module "lodash/trimEnd" { + const trimEnd: typeof _.trimEnd; + export = trimEnd; +} + + +declare module "lodash/trimStart" { + const trimStart: typeof _.trimStart; + export = trimStart; +} + + +declare module "lodash/truncate" { + const truncate: typeof _.truncate; + export = truncate; +} + + +declare module "lodash/unescape" { + const unescape: typeof _.unescape; + export = unescape; +} + + +declare module "lodash/uniqueId" { + const uniqueId: typeof _.uniqueId; + export = uniqueId; +} + + +declare module "lodash/upperCase" { + const upperCase: typeof _.upperCase; + export = upperCase; +} + + +declare module "lodash/upperFirst" { + const upperFirst: typeof _.upperFirst; + export = upperFirst; +} + + +declare module "lodash/each" { + const each: typeof _.each; + export = each; +} + + +declare module "lodash/eachRight" { + const eachRight: typeof _.eachRight; + export = eachRight; +} + + +declare module "lodash/first" { + const first: typeof _.first; + export = first; +} + +declare module "lodash/fp" { + export = _; +} + +declare module "lodash" { + export = _; +} + +// Backward compatibility with --target es5 +interface Set {} +interface Map {} +interface WeakSet {} +interface WeakMap {} diff --git a/samples/react-multipage/typings/mocha/mocha.d.ts b/samples/react-multipage/typings/mocha/mocha.d.ts new file mode 100644 index 000000000..88dc359fc --- /dev/null +++ b/samples/react-multipage/typings/mocha/mocha.d.ts @@ -0,0 +1,214 @@ +// Type definitions for mocha 2.2.5 +// Project: http://mochajs.org/ +// Definitions by: Kazi Manzur Rashid , otiai10 , jt000 , Vadim Macagon +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +interface MochaSetupOptions { + //milliseconds to wait before considering a test slow + slow?: number; + + // timeout in milliseconds + timeout?: number; + + // ui name "bdd", "tdd", "exports" etc + ui?: string; + + //array of accepted globals + globals?: any[]; + + // reporter instance (function or string), defaults to `mocha.reporters.Spec` + reporter?: any; + + // bail on the first test failure + bail?: boolean; + + // ignore global leaks + ignoreLeaks?: boolean; + + // grep string or regexp to filter tests with + grep?: any; +} + +interface MochaDone { + (error?: Error): void; +} + +declare var mocha: Mocha; +declare var describe: Mocha.IContextDefinition; +declare var xdescribe: Mocha.IContextDefinition; +// alias for `describe` +declare var context: Mocha.IContextDefinition; +// alias for `describe` +declare var suite: Mocha.IContextDefinition; +declare var it: Mocha.ITestDefinition; +declare var xit: Mocha.ITestDefinition; +// alias for `it` +declare var test: Mocha.ITestDefinition; + +declare function before(action: () => void): void; + +declare function before(action: (done: MochaDone) => void): void; + +declare function setup(action: () => void): void; + +declare function setup(action: (done: MochaDone) => void): void; + +declare function after(action: () => void): void; + +declare function after(action: (done: MochaDone) => void): void; + +declare function teardown(action: () => void): void; + +declare function teardown(action: (done: MochaDone) => void): void; + +declare function beforeEach(action: () => void): void; + +declare function beforeEach(action: (done: MochaDone) => void): void; + +declare function suiteSetup(action: () => void): void; + +declare function suiteSetup(action: (done: MochaDone) => void): void; + +declare function afterEach(action: () => void): void; + +declare function afterEach(action: (done: MochaDone) => void): void; + +declare function suiteTeardown(action: () => void): void; + +declare function suiteTeardown(action: (done: MochaDone) => void): void; + +declare class Mocha { + constructor(options?: { + grep?: RegExp; + ui?: string; + reporter?: string; + timeout?: number; + bail?: boolean; + }); + + /** Setup mocha with the given options. */ + setup(options: MochaSetupOptions): Mocha; + bail(value?: boolean): Mocha; + addFile(file: string): Mocha; + /** Sets reporter by name, defaults to "spec". */ + reporter(name: string): Mocha; + /** Sets reporter constructor, defaults to mocha.reporters.Spec. */ + reporter(reporter: (runner: Mocha.IRunner, options: any) => any): Mocha; + ui(value: string): Mocha; + grep(value: string): Mocha; + grep(value: RegExp): Mocha; + invert(): Mocha; + ignoreLeaks(value: boolean): Mocha; + checkLeaks(): Mocha; + /** Enables growl support. */ + growl(): Mocha; + globals(value: string): Mocha; + globals(values: string[]): Mocha; + useColors(value: boolean): Mocha; + useInlineDiffs(value: boolean): Mocha; + timeout(value: number): Mocha; + slow(value: number): Mocha; + enableTimeouts(value: boolean): Mocha; + asyncOnly(value: boolean): Mocha; + noHighlighting(value: boolean): Mocha; + /** Runs tests and invokes `onComplete()` when finished. */ + run(onComplete?: (failures: number) => void): Mocha.IRunner; +} + +// merge the Mocha class declaration with a module +declare module Mocha { + /** Partial interface for Mocha's `Runnable` class. */ + interface IRunnable { + title: string; + fn: Function; + async: boolean; + sync: boolean; + timedOut: boolean; + } + + /** Partial interface for Mocha's `Suite` class. */ + interface ISuite { + parent: ISuite; + title: string; + + fullTitle(): string; + } + + /** Partial interface for Mocha's `Test` class. */ + interface ITest extends IRunnable { + parent: ISuite; + pending: boolean; + + fullTitle(): string; + } + + /** Partial interface for Mocha's `Runner` class. */ + interface IRunner {} + + interface IContextDefinition { + (description: string, spec: () => void): ISuite; + only(description: string, spec: () => void): ISuite; + skip(description: string, spec: () => void): void; + timeout(ms: number): void; + } + + interface ITestDefinition { + (expectation: string, assertion?: () => void): ITest; + (expectation: string, assertion?: (done: MochaDone) => void): ITest; + only(expectation: string, assertion?: () => void): ITest; + only(expectation: string, assertion?: (done: MochaDone) => void): ITest; + skip(expectation: string, assertion?: () => void): void; + skip(expectation: string, assertion?: (done: MochaDone) => void): void; + timeout(ms: number): void; + } + + export module reporters { + export class Base { + stats: { + suites: number; + tests: number; + passes: number; + pending: number; + failures: number; + }; + + constructor(runner: IRunner); + } + + export class Doc extends Base {} + export class Dot extends Base {} + export class HTML extends Base {} + export class HTMLCov extends Base {} + export class JSON extends Base {} + export class JSONCov extends Base {} + export class JSONStream extends Base {} + export class Landing extends Base {} + export class List extends Base {} + export class Markdown extends Base {} + export class Min extends Base {} + export class Nyan extends Base {} + export class Progress extends Base { + /** + * @param options.open String used to indicate the start of the progress bar. + * @param options.complete String used to indicate a complete test on the progress bar. + * @param options.incomplete String used to indicate an incomplete test on the progress bar. + * @param options.close String used to indicate the end of the progress bar. + */ + constructor(runner: IRunner, options?: { + open?: string; + complete?: string; + incomplete?: string; + close?: string; + }); + } + export class Spec extends Base {} + export class TAP extends Base {} + export class XUnit extends Base { + constructor(runner: IRunner, options?: any); + } + } +} + +declare module "mocha" { + export = Mocha; +} diff --git a/samples/react-multipage/typings/node/node.d.ts b/samples/react-multipage/typings/node/node.d.ts new file mode 100644 index 000000000..710a133f0 --- /dev/null +++ b/samples/react-multipage/typings/node/node.d.ts @@ -0,0 +1,2392 @@ +// Type definitions for Node.js v4.x +// Project: http://nodejs.org/ +// Definitions by: Microsoft TypeScript , DefinitelyTyped +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/************************************************ +* * +* Node.js v4.x API * +* * +************************************************/ + +interface Error { + stack?: string; +} + + +// compat for TypeScript 1.8 +// if you use with --target es3 or --target es5 and use below definitions, +// use the lib.es6.d.ts that is bundled with TypeScript 1.8. +interface MapConstructor {} +interface WeakMapConstructor {} +interface SetConstructor {} +interface WeakSetConstructor {} + +/************************************************ +* * +* GLOBAL * +* * +************************************************/ +declare var process: NodeJS.Process; +declare var global: NodeJS.Global; + +declare var __filename: string; +declare var __dirname: string; + +declare function setTimeout(callback: (...args: any[]) => void, ms: number, ...args: any[]): NodeJS.Timer; +declare function clearTimeout(timeoutId: NodeJS.Timer): void; +declare function setInterval(callback: (...args: any[]) => void, ms: number, ...args: any[]): NodeJS.Timer; +declare function clearInterval(intervalId: NodeJS.Timer): void; +declare function setImmediate(callback: (...args: any[]) => void, ...args: any[]): any; +declare function clearImmediate(immediateId: any): void; + +interface NodeRequireFunction { + (id: string): any; +} + +interface NodeRequire extends NodeRequireFunction { + resolve(id:string): string; + cache: any; + extensions: any; + main: any; +} + +// HACK to use ODSP webpack require function. +// declare var require: NodeRequire; + +interface NodeModule { + exports: any; + require: NodeRequireFunction; + id: string; + filename: string; + loaded: boolean; + parent: any; + children: any[]; +} + +declare var module: NodeModule; + +// Same as module.exports +declare var exports: any; +declare var SlowBuffer: { + new (str: string, encoding?: string): Buffer; + new (size: number): Buffer; + new (size: Uint8Array): Buffer; + new (array: any[]): Buffer; + prototype: Buffer; + isBuffer(obj: any): boolean; + byteLength(string: string, encoding?: string): number; + concat(list: Buffer[], totalLength?: number): Buffer; +}; + + +// Buffer class +type BufferEncoding = "ascii" | "utf8" | "utf16le" | "ucs2" | "binary" | "hex"; +interface Buffer extends NodeBuffer {} + +/** + * Raw data is stored in instances of the Buffer class. + * A Buffer is similar to an array of integers but corresponds to a raw memory allocation outside the V8 heap. A Buffer cannot be resized. + * Valid string encodings: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex' + */ +declare var Buffer: { + /** + * Allocates a new buffer containing the given {str}. + * + * @param str String to store in buffer. + * @param encoding encoding to use, optional. Default is 'utf8' + */ + new (str: string, encoding?: string): Buffer; + /** + * Allocates a new buffer of {size} octets. + * + * @param size count of octets to allocate. + */ + new (size: number): Buffer; + /** + * Allocates a new buffer containing the given {array} of octets. + * + * @param array The octets to store. + */ + new (array: Uint8Array): Buffer; + /** + * Produces a Buffer backed by the same allocated memory as + * the given {ArrayBuffer}. + * + * + * @param arrayBuffer The ArrayBuffer with which to share memory. + */ + new (arrayBuffer: ArrayBuffer): Buffer; + /** + * Allocates a new buffer containing the given {array} of octets. + * + * @param array The octets to store. + */ + new (array: any[]): Buffer; + /** + * Copies the passed {buffer} data onto a new {Buffer} instance. + * + * @param buffer The buffer to copy. + */ + new (buffer: Buffer): Buffer; + prototype: Buffer; + /** + * Allocates a new Buffer using an {array} of octets. + * + * @param array + */ + from(array: any[]): Buffer; + /** + * When passed a reference to the .buffer property of a TypedArray instance, + * the newly created Buffer will share the same allocated memory as the TypedArray. + * The optional {byteOffset} and {length} arguments specify a memory range + * within the {arrayBuffer} that will be shared by the Buffer. + * + * @param arrayBuffer The .buffer property of a TypedArray or a new ArrayBuffer() + * @param byteOffset + * @param length + */ + from(arrayBuffer: ArrayBuffer, byteOffset?: number, length?:number): Buffer; + /** + * Copies the passed {buffer} data onto a new Buffer instance. + * + * @param buffer + */ + from(buffer: Buffer): Buffer; + /** + * Creates a new Buffer containing the given JavaScript string {str}. + * If provided, the {encoding} parameter identifies the character encoding. + * If not provided, {encoding} defaults to 'utf8'. + * + * @param str + */ + from(str: string, encoding?: string): Buffer; + /** + * Returns true if {obj} is a Buffer + * + * @param obj object to test. + */ + isBuffer(obj: any): obj is Buffer; + /** + * Returns true if {encoding} is a valid encoding argument. + * Valid string encodings in Node 0.12: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex' + * + * @param encoding string to test. + */ + isEncoding(encoding: string): boolean; + /** + * Gives the actual byte length of a string. encoding defaults to 'utf8'. + * This is not the same as String.prototype.length since that returns the number of characters in a string. + * + * @param string string to test. + * @param encoding encoding used to evaluate (defaults to 'utf8') + */ + byteLength(string: string, encoding?: string): number; + /** + * Returns a buffer which is the result of concatenating all the buffers in the list together. + * + * If the list has no items, or if the totalLength is 0, then it returns a zero-length buffer. + * If the list has exactly one item, then the first item of the list is returned. + * If the list has more than one item, then a new Buffer is created. + * + * @param list An array of Buffer objects to concatenate + * @param totalLength Total length of the buffers when concatenated. + * If totalLength is not provided, it is read from the buffers in the list. However, this adds an additional loop to the function, so it is faster to provide the length explicitly. + */ + concat(list: Buffer[], totalLength?: number): Buffer; + /** + * The same as buf1.compare(buf2). + */ + compare(buf1: Buffer, buf2: Buffer): number; +}; + +/************************************************ +* * +* GLOBAL INTERFACES * +* * +************************************************/ +declare namespace NodeJS { + export interface ErrnoException extends Error { + errno?: number; + code?: string; + path?: string; + syscall?: string; + stack?: string; + } + + export interface EventEmitter { + addListener(event: string, listener: Function): this; + on(event: string, listener: Function): this; + once(event: string, listener: Function): this; + removeListener(event: string, listener: Function): this; + removeAllListeners(event?: string): this; + setMaxListeners(n: number): this; + getMaxListeners(): number; + listeners(event: string): Function[]; + emit(event: string, ...args: any[]): boolean; + listenerCount(type: string): number; + } + + export interface ReadableStream extends EventEmitter { + readable: boolean; + read(size?: number): string|Buffer; + setEncoding(encoding: string): void; + pause(): void; + resume(): void; + pipe(destination: T, options?: { end?: boolean; }): T; + unpipe(destination?: T): void; + unshift(chunk: string): void; + unshift(chunk: Buffer): void; + wrap(oldStream: ReadableStream): ReadableStream; + } + + export interface WritableStream extends EventEmitter { + writable: boolean; + write(buffer: Buffer|string, cb?: Function): boolean; + write(str: string, encoding?: string, cb?: Function): boolean; + end(): void; + end(buffer: Buffer, cb?: Function): void; + end(str: string, cb?: Function): void; + end(str: string, encoding?: string, cb?: Function): void; + } + + export interface ReadWriteStream extends ReadableStream, WritableStream {} + + export interface Events extends EventEmitter { } + + export interface Domain extends Events { + run(fn: Function): void; + add(emitter: Events): void; + remove(emitter: Events): void; + bind(cb: (err: Error, data: any) => any): any; + intercept(cb: (data: any) => any): any; + dispose(): void; + + addListener(event: string, listener: Function): this; + on(event: string, listener: Function): this; + once(event: string, listener: Function): this; + removeListener(event: string, listener: Function): this; + removeAllListeners(event?: string): this; + } + + export interface MemoryUsage { + rss: number; + heapTotal: number; + heapUsed: number; + } + + export interface Process extends EventEmitter { + stdout: WritableStream; + stderr: WritableStream; + stdin: ReadableStream; + argv: string[]; + execArgv: string[]; + execPath: string; + abort(): void; + chdir(directory: string): void; + cwd(): string; + env: any; + exit(code?: number): void; + getgid(): number; + setgid(id: number): void; + setgid(id: string): void; + getuid(): number; + setuid(id: number): void; + setuid(id: string): void; + version: string; + versions: { + http_parser: string; + node: string; + v8: string; + ares: string; + uv: string; + zlib: string; + modules: string; + openssl: string; + }; + config: { + target_defaults: { + cflags: any[]; + default_configuration: string; + defines: string[]; + include_dirs: string[]; + libraries: string[]; + }; + variables: { + clang: number; + host_arch: string; + node_install_npm: boolean; + node_install_waf: boolean; + node_prefix: string; + node_shared_openssl: boolean; + node_shared_v8: boolean; + node_shared_zlib: boolean; + node_use_dtrace: boolean; + node_use_etw: boolean; + node_use_openssl: boolean; + target_arch: string; + v8_no_strict_aliasing: number; + v8_use_snapshot: boolean; + visibility: string; + }; + }; + kill(pid:number, signal?: string|number): void; + pid: number; + title: string; + arch: string; + platform: string; + memoryUsage(): MemoryUsage; + nextTick(callback: Function): void; + umask(mask?: number): number; + uptime(): number; + hrtime(time?:number[]): number[]; + domain: Domain; + + // Worker + send?(message: any, sendHandle?: any): void; + disconnect(): void; + connected: boolean; + } + + export interface Global { + Array: typeof Array; + ArrayBuffer: typeof ArrayBuffer; + Boolean: typeof Boolean; + Buffer: typeof Buffer; + DataView: typeof DataView; + Date: typeof Date; + Error: typeof Error; + EvalError: typeof EvalError; + Float32Array: typeof Float32Array; + Float64Array: typeof Float64Array; + Function: typeof Function; + GLOBAL: Global; + Infinity: typeof Infinity; + Int16Array: typeof Int16Array; + Int32Array: typeof Int32Array; + Int8Array: typeof Int8Array; + Intl: typeof Intl; + JSON: typeof JSON; + Map: MapConstructor; + Math: typeof Math; + NaN: typeof NaN; + Number: typeof Number; + Object: typeof Object; + Promise: Function; + RangeError: typeof RangeError; + ReferenceError: typeof ReferenceError; + RegExp: typeof RegExp; + Set: SetConstructor; + String: typeof String; + Symbol: Function; + SyntaxError: typeof SyntaxError; + TypeError: typeof TypeError; + URIError: typeof URIError; + Uint16Array: typeof Uint16Array; + Uint32Array: typeof Uint32Array; + Uint8Array: typeof Uint8Array; + Uint8ClampedArray: Function; + WeakMap: WeakMapConstructor; + WeakSet: WeakSetConstructor; + clearImmediate: (immediateId: any) => void; + clearInterval: (intervalId: NodeJS.Timer) => void; + clearTimeout: (timeoutId: NodeJS.Timer) => void; + console: typeof console; + decodeURI: typeof decodeURI; + decodeURIComponent: typeof decodeURIComponent; + encodeURI: typeof encodeURI; + encodeURIComponent: typeof encodeURIComponent; + escape: (str: string) => string; + eval: typeof eval; + global: Global; + isFinite: typeof isFinite; + isNaN: typeof isNaN; + parseFloat: typeof parseFloat; + parseInt: typeof parseInt; + process: Process; + root: Global; + setImmediate: (callback: (...args: any[]) => void, ...args: any[]) => any; + setInterval: (callback: (...args: any[]) => void, ms: number, ...args: any[]) => NodeJS.Timer; + setTimeout: (callback: (...args: any[]) => void, ms: number, ...args: any[]) => NodeJS.Timer; + undefined: typeof undefined; + unescape: (str: string) => string; + gc: () => void; + v8debug?: any; + } + + export interface Timer { + ref() : void; + unref() : void; + } +} + +/** + * @deprecated + */ +interface NodeBuffer extends Uint8Array { + write(string: string, offset?: number, length?: number, encoding?: string): number; + toString(encoding?: string, start?: number, end?: number): string; + toJSON(): any; + equals(otherBuffer: Buffer): boolean; + compare(otherBuffer: Buffer): number; + copy(targetBuffer: Buffer, targetStart?: number, sourceStart?: number, sourceEnd?: number): number; + slice(start?: number, end?: number): Buffer; + writeUIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; + writeUIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; + writeIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; + writeIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; + readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number; + readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number; + readIntLE(offset: number, byteLength: number, noAssert?: boolean): number; + readIntBE(offset: number, byteLength: number, noAssert?: boolean): number; + readUInt8(offset: number, noAssert?: boolean): number; + readUInt16LE(offset: number, noAssert?: boolean): number; + readUInt16BE(offset: number, noAssert?: boolean): number; + readUInt32LE(offset: number, noAssert?: boolean): number; + readUInt32BE(offset: number, noAssert?: boolean): number; + readInt8(offset: number, noAssert?: boolean): number; + readInt16LE(offset: number, noAssert?: boolean): number; + readInt16BE(offset: number, noAssert?: boolean): number; + readInt32LE(offset: number, noAssert?: boolean): number; + readInt32BE(offset: number, noAssert?: boolean): number; + readFloatLE(offset: number, noAssert?: boolean): number; + readFloatBE(offset: number, noAssert?: boolean): number; + readDoubleLE(offset: number, noAssert?: boolean): number; + readDoubleBE(offset: number, noAssert?: boolean): number; + writeUInt8(value: number, offset: number, noAssert?: boolean): number; + writeUInt16LE(value: number, offset: number, noAssert?: boolean): number; + writeUInt16BE(value: number, offset: number, noAssert?: boolean): number; + writeUInt32LE(value: number, offset: number, noAssert?: boolean): number; + writeUInt32BE(value: number, offset: number, noAssert?: boolean): number; + writeInt8(value: number, offset: number, noAssert?: boolean): number; + writeInt16LE(value: number, offset: number, noAssert?: boolean): number; + writeInt16BE(value: number, offset: number, noAssert?: boolean): number; + writeInt32LE(value: number, offset: number, noAssert?: boolean): number; + writeInt32BE(value: number, offset: number, noAssert?: boolean): number; + writeFloatLE(value: number, offset: number, noAssert?: boolean): number; + writeFloatBE(value: number, offset: number, noAssert?: boolean): number; + writeDoubleLE(value: number, offset: number, noAssert?: boolean): number; + writeDoubleBE(value: number, offset: number, noAssert?: boolean): number; + fill(value: any, offset?: number, end?: number): this; + // TODO: encoding param + indexOf(value: string | number | Buffer, byteOffset?: number): number; + // TODO: entries + // TODO: includes + // TODO: keys + // TODO: values +} + +/************************************************ +* * +* MODULES * +* * +************************************************/ +declare module "buffer" { + export var INSPECT_MAX_BYTES: number; + var BuffType: typeof Buffer; + var SlowBuffType: typeof SlowBuffer; + export { BuffType as Buffer, SlowBuffType as SlowBuffer }; +} + +declare module "querystring" { + export interface StringifyOptions { + encodeURIComponent?: Function; + } + + export interface ParseOptions { + maxKeys?: number; + decodeURIComponent?: Function; + } + + export function stringify(obj: T, sep?: string, eq?: string, options?: StringifyOptions): string; + export function parse(str: string, sep?: string, eq?: string, options?: ParseOptions): any; + export function parse(str: string, sep?: string, eq?: string, options?: ParseOptions): T; + export function escape(str: string): string; + export function unescape(str: string): string; +} + +declare module "events" { + export class EventEmitter implements NodeJS.EventEmitter { + static EventEmitter: EventEmitter; + static listenerCount(emitter: EventEmitter, event: string): number; // deprecated + static defaultMaxListeners: number; + + addListener(event: string, listener: Function): this; + on(event: string, listener: Function): this; + once(event: string, listener: Function): this; + removeListener(event: string, listener: Function): this; + removeAllListeners(event?: string): this; + setMaxListeners(n: number): this; + getMaxListeners(): number; + listeners(event: string): Function[]; + emit(event: string, ...args: any[]): boolean; + listenerCount(type: string): number; + } +} + +declare module "http" { + import * as events from "events"; + import * as net from "net"; + import * as stream from "stream"; + + export interface RequestOptions { + protocol?: string; + host?: string; + hostname?: string; + family?: number; + port?: number; + localAddress?: string; + socketPath?: string; + method?: string; + path?: string; + headers?: { [key: string]: any }; + auth?: string; + agent?: Agent|boolean; + } + + export interface Server extends events.EventEmitter, net.Server { + setTimeout(msecs: number, callback: Function): void; + maxHeadersCount: number; + timeout: number; + } + /** + * @deprecated Use IncomingMessage + */ + export interface ServerRequest extends IncomingMessage { + connection: net.Socket; + } + export interface ServerResponse extends events.EventEmitter, stream.Writable { + // Extended base methods + write(buffer: Buffer): boolean; + write(buffer: Buffer, cb?: Function): boolean; + write(str: string, cb?: Function): boolean; + write(str: string, encoding?: string, cb?: Function): boolean; + write(str: string, encoding?: string, fd?: string): boolean; + + writeContinue(): void; + writeHead(statusCode: number, reasonPhrase?: string, headers?: any): void; + writeHead(statusCode: number, headers?: any): void; + statusCode: number; + statusMessage: string; + headersSent: boolean; + setHeader(name: string, value: string | string[]): void; + sendDate: boolean; + getHeader(name: string): string; + removeHeader(name: string): void; + write(chunk: any, encoding?: string): any; + addTrailers(headers: any): void; + + // Extended base methods + end(): void; + end(buffer: Buffer, cb?: Function): void; + end(str: string, cb?: Function): void; + end(str: string, encoding?: string, cb?: Function): void; + end(data?: any, encoding?: string): void; + } + export interface ClientRequest extends events.EventEmitter, stream.Writable { + // Extended base methods + write(buffer: Buffer): boolean; + write(buffer: Buffer, cb?: Function): boolean; + write(str: string, cb?: Function): boolean; + write(str: string, encoding?: string, cb?: Function): boolean; + write(str: string, encoding?: string, fd?: string): boolean; + + write(chunk: any, encoding?: string): void; + abort(): void; + setTimeout(timeout: number, callback?: Function): void; + setNoDelay(noDelay?: boolean): void; + setSocketKeepAlive(enable?: boolean, initialDelay?: number): void; + + setHeader(name: string, value: string | string[]): void; + getHeader(name: string): string; + removeHeader(name: string): void; + addTrailers(headers: any): void; + + // Extended base methods + end(): void; + end(buffer: Buffer, cb?: Function): void; + end(str: string, cb?: Function): void; + end(str: string, encoding?: string, cb?: Function): void; + end(data?: any, encoding?: string): void; + } + export interface IncomingMessage extends events.EventEmitter, stream.Readable { + httpVersion: string; + headers: any; + rawHeaders: string[]; + trailers: any; + rawTrailers: any; + setTimeout(msecs: number, callback: Function): NodeJS.Timer; + /** + * Only valid for request obtained from http.Server. + */ + method?: string; + /** + * Only valid for request obtained from http.Server. + */ + url?: string; + /** + * Only valid for response obtained from http.ClientRequest. + */ + statusCode?: number; + /** + * Only valid for response obtained from http.ClientRequest. + */ + statusMessage?: string; + socket: net.Socket; + } + /** + * @deprecated Use IncomingMessage + */ + export interface ClientResponse extends IncomingMessage { } + + export interface AgentOptions { + /** + * Keep sockets around in a pool to be used by other requests in the future. Default = false + */ + keepAlive?: boolean; + /** + * When using HTTP KeepAlive, how often to send TCP KeepAlive packets over sockets being kept alive. Default = 1000. + * Only relevant if keepAlive is set to true. + */ + keepAliveMsecs?: number; + /** + * Maximum number of sockets to allow per host. Default for Node 0.10 is 5, default for Node 0.12 is Infinity + */ + maxSockets?: number; + /** + * Maximum number of sockets to leave open in a free state. Only relevant if keepAlive is set to true. Default = 256. + */ + maxFreeSockets?: number; + } + + export class Agent { + maxSockets: number; + sockets: any; + requests: any; + + constructor(opts?: AgentOptions); + + /** + * Destroy any sockets that are currently in use by the agent. + * It is usually not necessary to do this. However, if you are using an agent with KeepAlive enabled, + * then it is best to explicitly shut down the agent when you know that it will no longer be used. Otherwise, + * sockets may hang open for quite a long time before the server terminates them. + */ + destroy(): void; + } + + export var METHODS: string[]; + + export var STATUS_CODES: { + [errorCode: number]: string; + [errorCode: string]: string; + }; + export function createServer(requestListener?: (request: IncomingMessage, response: ServerResponse) =>void ): Server; + export function createClient(port?: number, host?: string): any; + export function request(options: RequestOptions, callback?: (res: IncomingMessage) => void): ClientRequest; + export function get(options: any, callback?: (res: IncomingMessage) => void): ClientRequest; + export var globalAgent: Agent; +} + +declare module "cluster" { + import * as child from "child_process"; + import * as events from "events"; + + export interface ClusterSettings { + exec?: string; + args?: string[]; + silent?: boolean; + } + + export interface Address { + address: string; + port: number; + addressType: string; + } + + export class Worker extends events.EventEmitter { + id: string; + process: child.ChildProcess; + suicide: boolean; + send(message: any, sendHandle?: any): void; + kill(signal?: string): void; + destroy(signal?: string): void; + disconnect(): void; + isConnected(): boolean; + isDead(): boolean; + } + + export var settings: ClusterSettings; + export var isMaster: boolean; + export var isWorker: boolean; + export function setupMaster(settings?: ClusterSettings): void; + export function fork(env?: any): Worker; + export function disconnect(callback?: Function): void; + export var worker: Worker; + export var workers: { + [index: string]: Worker + }; + + // Event emitter + export function addListener(event: string, listener: Function): void; + export function on(event: "disconnect", listener: (worker: Worker) => void): void; + export function on(event: "exit", listener: (worker: Worker, code: number, signal: string) => void): void; + export function on(event: "fork", listener: (worker: Worker) => void): void; + export function on(event: "listening", listener: (worker: Worker, address: any) => void): void; + export function on(event: "message", listener: (worker: Worker, message: any) => void): void; + export function on(event: "online", listener: (worker: Worker) => void): void; + export function on(event: "setup", listener: (settings: any) => void): void; + export function on(event: string, listener: Function): any; + export function once(event: string, listener: Function): void; + export function removeListener(event: string, listener: Function): void; + export function removeAllListeners(event?: string): void; + export function setMaxListeners(n: number): void; + export function listeners(event: string): Function[]; + export function emit(event: string, ...args: any[]): boolean; +} + +declare module "zlib" { + import * as stream from "stream"; + export interface ZlibOptions { chunkSize?: number; windowBits?: number; level?: number; memLevel?: number; strategy?: number; dictionary?: any; } + + export interface Gzip extends stream.Transform { } + export interface Gunzip extends stream.Transform { } + export interface Deflate extends stream.Transform { } + export interface Inflate extends stream.Transform { } + export interface DeflateRaw extends stream.Transform { } + export interface InflateRaw extends stream.Transform { } + export interface Unzip extends stream.Transform { } + + export function createGzip(options?: ZlibOptions): Gzip; + export function createGunzip(options?: ZlibOptions): Gunzip; + export function createDeflate(options?: ZlibOptions): Deflate; + export function createInflate(options?: ZlibOptions): Inflate; + export function createDeflateRaw(options?: ZlibOptions): DeflateRaw; + export function createInflateRaw(options?: ZlibOptions): InflateRaw; + export function createUnzip(options?: ZlibOptions): Unzip; + + export function deflate(buf: Buffer, callback: (error: Error, result: any) =>void ): void; + export function deflateSync(buf: Buffer, options?: ZlibOptions): any; + export function deflateRaw(buf: Buffer, callback: (error: Error, result: any) =>void ): void; + export function deflateRawSync(buf: Buffer, options?: ZlibOptions): any; + export function gzip(buf: Buffer, callback: (error: Error, result: any) =>void ): void; + export function gzipSync(buf: Buffer, options?: ZlibOptions): any; + export function gunzip(buf: Buffer, callback: (error: Error, result: any) =>void ): void; + export function gunzipSync(buf: Buffer, options?: ZlibOptions): any; + export function inflate(buf: Buffer, callback: (error: Error, result: any) =>void ): void; + export function inflateSync(buf: Buffer, options?: ZlibOptions): any; + export function inflateRaw(buf: Buffer, callback: (error: Error, result: any) =>void ): void; + export function inflateRawSync(buf: Buffer, options?: ZlibOptions): any; + export function unzip(buf: Buffer, callback: (error: Error, result: any) =>void ): void; + export function unzipSync(buf: Buffer, options?: ZlibOptions): any; + + // Constants + export var Z_NO_FLUSH: number; + export var Z_PARTIAL_FLUSH: number; + export var Z_SYNC_FLUSH: number; + export var Z_FULL_FLUSH: number; + export var Z_FINISH: number; + export var Z_BLOCK: number; + export var Z_TREES: number; + export var Z_OK: number; + export var Z_STREAM_END: number; + export var Z_NEED_DICT: number; + export var Z_ERRNO: number; + export var Z_STREAM_ERROR: number; + export var Z_DATA_ERROR: number; + export var Z_MEM_ERROR: number; + export var Z_BUF_ERROR: number; + export var Z_VERSION_ERROR: number; + export var Z_NO_COMPRESSION: number; + export var Z_BEST_SPEED: number; + export var Z_BEST_COMPRESSION: number; + export var Z_DEFAULT_COMPRESSION: number; + export var Z_FILTERED: number; + export var Z_HUFFMAN_ONLY: number; + export var Z_RLE: number; + export var Z_FIXED: number; + export var Z_DEFAULT_STRATEGY: number; + export var Z_BINARY: number; + export var Z_TEXT: number; + export var Z_ASCII: number; + export var Z_UNKNOWN: number; + export var Z_DEFLATED: number; + export var Z_NULL: number; +} + +declare module "os" { + export interface CpuInfo { + model: string; + speed: number; + times: { + user: number; + nice: number; + sys: number; + idle: number; + irq: number; + }; + } + + export interface NetworkInterfaceInfo { + address: string; + netmask: string; + family: string; + mac: string; + internal: boolean; + } + + export function tmpdir(): string; + export function homedir(): string; + export function endianness(): string; + export function hostname(): string; + export function type(): string; + export function platform(): string; + export function arch(): string; + export function release(): string; + export function uptime(): number; + export function loadavg(): number[]; + export function totalmem(): number; + export function freemem(): number; + export function cpus(): CpuInfo[]; + export function networkInterfaces(): {[index: string]: NetworkInterfaceInfo[]}; + export var EOL: string; +} + +declare module "https" { + import * as tls from "tls"; + import * as events from "events"; + import * as http from "http"; + + export interface ServerOptions { + pfx?: any; + key?: any; + passphrase?: string; + cert?: any; + ca?: any; + crl?: any; + ciphers?: string; + honorCipherOrder?: boolean; + requestCert?: boolean; + rejectUnauthorized?: boolean; + NPNProtocols?: any; + SNICallback?: (servername: string) => any; + } + + export interface RequestOptions extends http.RequestOptions { + pfx?: any; + key?: any; + passphrase?: string; + cert?: any; + ca?: any; + ciphers?: string; + rejectUnauthorized?: boolean; + secureProtocol?: string; + } + + export interface Agent extends http.Agent { } + + export interface AgentOptions extends http.AgentOptions { + maxCachedSessions?: number; + } + + export var Agent: { + new (options?: AgentOptions): Agent; + }; + export interface Server extends tls.Server { } + export function createServer(options: ServerOptions, requestListener?: Function): Server; + export function request(options: RequestOptions, callback?: (res: http.IncomingMessage) =>void ): http.ClientRequest; + export function get(options: RequestOptions, callback?: (res: http.IncomingMessage) =>void ): http.ClientRequest; + export var globalAgent: Agent; +} + +declare module "punycode" { + export function decode(string: string): string; + export function encode(string: string): string; + export function toUnicode(domain: string): string; + export function toASCII(domain: string): string; + export var ucs2: ucs2; + interface ucs2 { + decode(string: string): number[]; + encode(codePoints: number[]): string; + } + export var version: any; +} + +declare module "repl" { + import * as stream from "stream"; + import * as events from "events"; + + export interface ReplOptions { + prompt?: string; + input?: NodeJS.ReadableStream; + output?: NodeJS.WritableStream; + terminal?: boolean; + eval?: Function; + useColors?: boolean; + useGlobal?: boolean; + ignoreUndefined?: boolean; + writer?: Function; + } + export function start(options: ReplOptions): events.EventEmitter; +} + +declare module "readline" { + import * as events from "events"; + import * as stream from "stream"; + + export interface Key { + sequence?: string; + name?: string; + ctrl?: boolean; + meta?: boolean; + shift?: boolean; + } + + export interface ReadLine extends events.EventEmitter { + setPrompt(prompt: string): void; + prompt(preserveCursor?: boolean): void; + question(query: string, callback: (answer: string) => void): void; + pause(): ReadLine; + resume(): ReadLine; + close(): void; + write(data: string|Buffer, key?: Key): void; + } + + export interface Completer { + (line: string): CompleterResult; + (line: string, callback: (err: any, result: CompleterResult) => void): any; + } + + export interface CompleterResult { + completions: string[]; + line: string; + } + + export interface ReadLineOptions { + input: NodeJS.ReadableStream; + output?: NodeJS.WritableStream; + completer?: Completer; + terminal?: boolean; + historySize?: number; + } + + export function createInterface(input: NodeJS.ReadableStream, output?: NodeJS.WritableStream, completer?: Completer, terminal?: boolean): ReadLine; + export function createInterface(options: ReadLineOptions): ReadLine; + + export function cursorTo(stream: NodeJS.WritableStream, x: number, y: number): void; + export function moveCursor(stream: NodeJS.WritableStream, dx: number|string, dy: number|string): void; + export function clearLine(stream: NodeJS.WritableStream, dir: number): void; + export function clearScreenDown(stream: NodeJS.WritableStream): void; +} + +declare module "vm" { + export interface Context { } + export interface ScriptOptions { + filename?: string; + lineOffset?: number; + columnOffset?: number; + displayErrors?: boolean; + timeout?: number; + cachedData?: Buffer; + produceCachedData?: boolean; + } + export interface RunningScriptOptions { + filename?: string; + lineOffset?: number; + columnOffset?: number; + displayErrors?: boolean; + timeout?: number; + } + export class Script { + constructor(code: string, options?: ScriptOptions); + runInContext(contextifiedSandbox: Context, options?: RunningScriptOptions): any; + runInNewContext(sandbox?: Context, options?: RunningScriptOptions): any; + runInThisContext(options?: RunningScriptOptions): any; + } + export function createContext(sandbox?: Context): Context; + export function isContext(sandbox: Context): boolean; + export function runInContext(code: string, contextifiedSandbox: Context, options?: RunningScriptOptions): any; + export function runInDebugContext(code: string): any; + export function runInNewContext(code: string, sandbox?: Context, options?: RunningScriptOptions): any; + export function runInThisContext(code: string, options?: RunningScriptOptions): any; +} + +declare module "child_process" { + import * as events from "events"; + import * as stream from "stream"; + + export interface ChildProcess extends events.EventEmitter { + stdin: stream.Writable; + stdout: stream.Readable; + stderr: stream.Readable; + stdio: [stream.Writable, stream.Readable, stream.Readable]; + pid: number; + kill(signal?: string): void; + send(message: any, sendHandle?: any): void; + disconnect(): void; + unref(): void; + } + + export interface SpawnOptions { + cwd?: string; + env?: any; + stdio?: any; + detached?: boolean; + uid?: number; + gid?: number; + shell?: boolean | string; + } + export function spawn(command: string, args?: string[], options?: SpawnOptions): ChildProcess; + + export interface ExecOptions { + cwd?: string; + env?: any; + shell?: string; + timeout?: number; + maxBuffer?: number; + killSignal?: string; + uid?: number; + gid?: number; + } + export interface ExecOptionsWithStringEncoding extends ExecOptions { + encoding: BufferEncoding; + } + export interface ExecOptionsWithBufferEncoding extends ExecOptions { + encoding: string; // specify `null`. + } + export function exec(command: string, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; + export function exec(command: string, options: ExecOptionsWithStringEncoding, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; + // usage. child_process.exec("tsc", {encoding: null as string}, (err, stdout, stderr) => {}); + export function exec(command: string, options: ExecOptionsWithBufferEncoding, callback?: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess; + export function exec(command: string, options: ExecOptions, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; + + export interface ExecFileOptions { + cwd?: string; + env?: any; + timeout?: number; + maxBuffer?: number; + killSignal?: string; + uid?: number; + gid?: number; + } + export interface ExecFileOptionsWithStringEncoding extends ExecFileOptions { + encoding: BufferEncoding; + } + export interface ExecFileOptionsWithBufferEncoding extends ExecFileOptions { + encoding: string; // specify `null`. + } + export function execFile(file: string, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; + export function execFile(file: string, options?: ExecFileOptionsWithStringEncoding, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; + // usage. child_process.execFile("file.sh", {encoding: null as string}, (err, stdout, stderr) => {}); + export function execFile(file: string, options?: ExecFileOptionsWithBufferEncoding, callback?: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess; + export function execFile(file: string, options?: ExecFileOptions, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; + export function execFile(file: string, args?: string[], callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; + export function execFile(file: string, args?: string[], options?: ExecFileOptionsWithStringEncoding, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; + // usage. child_process.execFile("file.sh", ["foo"], {encoding: null as string}, (err, stdout, stderr) => {}); + export function execFile(file: string, args?: string[], options?: ExecFileOptionsWithBufferEncoding, callback?: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess; + export function execFile(file: string, args?: string[], options?: ExecFileOptions, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; + + export interface ForkOptions { + cwd?: string; + env?: any; + execPath?: string; + execArgv?: string[]; + silent?: boolean; + uid?: number; + gid?: number; + } + export function fork(modulePath: string, args?: string[], options?: ForkOptions): ChildProcess; + + export interface SpawnSyncOptions { + cwd?: string; + input?: string | Buffer; + stdio?: any; + env?: any; + uid?: number; + gid?: number; + timeout?: number; + killSignal?: string; + maxBuffer?: number; + encoding?: string; + shell?: boolean | string; + } + export interface SpawnSyncOptionsWithStringEncoding extends SpawnSyncOptions { + encoding: BufferEncoding; + } + export interface SpawnSyncOptionsWithBufferEncoding extends SpawnSyncOptions { + encoding: string; // specify `null`. + } + export interface SpawnSyncReturns { + pid: number; + output: string[]; + stdout: T; + stderr: T; + status: number; + signal: string; + error: Error; + } + export function spawnSync(command: string): SpawnSyncReturns; + export function spawnSync(command: string, options?: SpawnSyncOptionsWithStringEncoding): SpawnSyncReturns; + export function spawnSync(command: string, options?: SpawnSyncOptionsWithBufferEncoding): SpawnSyncReturns; + export function spawnSync(command: string, options?: SpawnSyncOptions): SpawnSyncReturns; + export function spawnSync(command: string, args?: string[], options?: SpawnSyncOptionsWithStringEncoding): SpawnSyncReturns; + export function spawnSync(command: string, args?: string[], options?: SpawnSyncOptionsWithBufferEncoding): SpawnSyncReturns; + export function spawnSync(command: string, args?: string[], options?: SpawnSyncOptions): SpawnSyncReturns; + + export interface ExecSyncOptions { + cwd?: string; + input?: string | Buffer; + stdio?: any; + env?: any; + shell?: string; + uid?: number; + gid?: number; + timeout?: number; + killSignal?: string; + maxBuffer?: number; + encoding?: string; + } + export interface ExecSyncOptionsWithStringEncoding extends ExecSyncOptions { + encoding: BufferEncoding; + } + export interface ExecSyncOptionsWithBufferEncoding extends ExecSyncOptions { + encoding: string; // specify `null`. + } + export function execSync(command: string): Buffer; + export function execSync(command: string, options?: ExecSyncOptionsWithStringEncoding): string; + export function execSync(command: string, options?: ExecSyncOptionsWithBufferEncoding): Buffer; + export function execSync(command: string, options?: ExecSyncOptions): Buffer; + + export interface ExecFileSyncOptions { + cwd?: string; + input?: string | Buffer; + stdio?: any; + env?: any; + uid?: number; + gid?: number; + timeout?: number; + killSignal?: string; + maxBuffer?: number; + encoding?: string; + } + export interface ExecFileSyncOptionsWithStringEncoding extends ExecFileSyncOptions { + encoding: BufferEncoding; + } + export interface ExecFileSyncOptionsWithBufferEncoding extends ExecFileSyncOptions { + encoding: string; // specify `null`. + } + export function execFileSync(command: string): Buffer; + export function execFileSync(command: string, options?: ExecFileSyncOptionsWithStringEncoding): string; + export function execFileSync(command: string, options?: ExecFileSyncOptionsWithBufferEncoding): Buffer; + export function execFileSync(command: string, options?: ExecFileSyncOptions): Buffer; + export function execFileSync(command: string, args?: string[], options?: ExecFileSyncOptionsWithStringEncoding): string; + export function execFileSync(command: string, args?: string[], options?: ExecFileSyncOptionsWithBufferEncoding): Buffer; + export function execFileSync(command: string, args?: string[], options?: ExecFileSyncOptions): Buffer; +} + +declare module "url" { + export interface Url { + href?: string; + protocol?: string; + auth?: string; + hostname?: string; + port?: string; + host?: string; + pathname?: string; + search?: string; + query?: string | any; + slashes?: boolean; + hash?: string; + path?: string; + } + + export function parse(urlStr: string, parseQueryString?: boolean , slashesDenoteHost?: boolean ): Url; + export function format(url: Url): string; + export function resolve(from: string, to: string): string; +} + +declare module "dns" { + export function lookup(domain: string, family: number, callback: (err: Error, address: string, family: number) =>void ): string; + export function lookup(domain: string, callback: (err: Error, address: string, family: number) =>void ): string; + export function resolve(domain: string, rrtype: string, callback: (err: Error, addresses: string[]) =>void ): string[]; + export function resolve(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; + export function resolve4(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; + export function resolve6(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; + export function resolveMx(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; + export function resolveTxt(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; + export function resolveSrv(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; + export function resolveNs(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; + export function resolveCname(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; + export function reverse(ip: string, callback: (err: Error, domains: string[]) =>void ): string[]; +} + +declare module "net" { + import * as stream from "stream"; + + export interface Socket extends stream.Duplex { + // Extended base methods + write(buffer: Buffer): boolean; + write(buffer: Buffer, cb?: Function): boolean; + write(str: string, cb?: Function): boolean; + write(str: string, encoding?: string, cb?: Function): boolean; + write(str: string, encoding?: string, fd?: string): boolean; + + connect(port: number, host?: string, connectionListener?: Function): void; + connect(path: string, connectionListener?: Function): void; + bufferSize: number; + setEncoding(encoding?: string): void; + write(data: any, encoding?: string, callback?: Function): void; + destroy(): void; + pause(): void; + resume(): void; + setTimeout(timeout: number, callback?: Function): void; + setNoDelay(noDelay?: boolean): void; + setKeepAlive(enable?: boolean, initialDelay?: number): void; + address(): { port: number; family: string; address: string; }; + unref(): void; + ref(): void; + + remoteAddress: string; + remoteFamily: string; + remotePort: number; + localAddress: string; + localPort: number; + bytesRead: number; + bytesWritten: number; + + // Extended base methods + end(): void; + end(buffer: Buffer, cb?: Function): void; + end(str: string, cb?: Function): void; + end(str: string, encoding?: string, cb?: Function): void; + end(data?: any, encoding?: string): void; + } + + export var Socket: { + new (options?: { fd?: string; type?: string; allowHalfOpen?: boolean; }): Socket; + }; + + export interface ListenOptions { + port?: number; + host?: string; + backlog?: number; + path?: string; + exclusive?: boolean; + } + + export interface Server extends Socket { + listen(port: number, hostname?: string, backlog?: number, listeningListener?: Function): Server; + listen(port: number, hostname?: string, listeningListener?: Function): Server; + listen(port: number, backlog?: number, listeningListener?: Function): Server; + listen(port: number, listeningListener?: Function): Server; + listen(path: string, backlog?: number, listeningListener?: Function): Server; + listen(path: string, listeningListener?: Function): Server; + listen(handle: any, backlog?: number, listeningListener?: Function): Server; + listen(handle: any, listeningListener?: Function): Server; + listen(options: ListenOptions, listeningListener?: Function): Server; + close(callback?: Function): Server; + address(): { port: number; family: string; address: string; }; + getConnections(cb: (error: Error, count: number) => void): void; + ref(): Server; + unref(): Server; + maxConnections: number; + connections: number; + } + export function createServer(connectionListener?: (socket: Socket) =>void ): Server; + export function createServer(options?: { allowHalfOpen?: boolean; }, connectionListener?: (socket: Socket) =>void ): Server; + export function connect(options: { port: number, host?: string, localAddress? : string, localPort? : string, family? : number, allowHalfOpen?: boolean; }, connectionListener?: Function): Socket; + export function connect(port: number, host?: string, connectionListener?: Function): Socket; + export function connect(path: string, connectionListener?: Function): Socket; + export function createConnection(options: { port: number, host?: string, localAddress? : string, localPort? : string, family? : number, allowHalfOpen?: boolean; }, connectionListener?: Function): Socket; + export function createConnection(port: number, host?: string, connectionListener?: Function): Socket; + export function createConnection(path: string, connectionListener?: Function): Socket; + export function isIP(input: string): number; + export function isIPv4(input: string): boolean; + export function isIPv6(input: string): boolean; +} + +declare module "dgram" { + import * as events from "events"; + + interface RemoteInfo { + address: string; + port: number; + size: number; + } + + interface AddressInfo { + address: string; + family: string; + port: number; + } + + export function createSocket(type: string, callback?: (msg: Buffer, rinfo: RemoteInfo) => void): Socket; + + interface Socket extends events.EventEmitter { + send(buf: Buffer, offset: number, length: number, port: number, address: string, callback?: (error: Error, bytes: number) => void): void; + bind(port: number, address?: string, callback?: () => void): void; + close(): void; + address(): AddressInfo; + setBroadcast(flag: boolean): void; + setMulticastTTL(ttl: number): void; + setMulticastLoopback(flag: boolean): void; + addMembership(multicastAddress: string, multicastInterface?: string): void; + dropMembership(multicastAddress: string, multicastInterface?: string): void; + } +} + +declare module "fs" { + import * as stream from "stream"; + import * as events from "events"; + + interface Stats { + isFile(): boolean; + isDirectory(): boolean; + isBlockDevice(): boolean; + isCharacterDevice(): boolean; + isSymbolicLink(): boolean; + isFIFO(): boolean; + isSocket(): boolean; + dev: number; + ino: number; + mode: number; + nlink: number; + uid: number; + gid: number; + rdev: number; + size: number; + blksize: number; + blocks: number; + atime: Date; + mtime: Date; + ctime: Date; + birthtime: Date; + } + + interface FSWatcher extends events.EventEmitter { + close(): void; + } + + export interface ReadStream extends stream.Readable { + close(): void; + } + export interface WriteStream extends stream.Writable { + close(): void; + bytesWritten: number; + } + + /** + * Asynchronous rename. + * @param oldPath + * @param newPath + * @param callback No arguments other than a possible exception are given to the completion callback. + */ + export function rename(oldPath: string, newPath: string, callback?: (err?: NodeJS.ErrnoException) => void): void; + /** + * Synchronous rename + * @param oldPath + * @param newPath + */ + export function renameSync(oldPath: string, newPath: string): void; + export function truncate(path: string, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function truncate(path: string, len: number, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function truncateSync(path: string, len?: number): void; + export function ftruncate(fd: number, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function ftruncate(fd: number, len: number, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function ftruncateSync(fd: number, len?: number): void; + export function chown(path: string, uid: number, gid: number, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function chownSync(path: string, uid: number, gid: number): void; + export function fchown(fd: number, uid: number, gid: number, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function fchownSync(fd: number, uid: number, gid: number): void; + export function lchown(path: string, uid: number, gid: number, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function lchownSync(path: string, uid: number, gid: number): void; + export function chmod(path: string, mode: number, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function chmod(path: string, mode: string, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function chmodSync(path: string, mode: number): void; + export function chmodSync(path: string, mode: string): void; + export function fchmod(fd: number, mode: number, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function fchmod(fd: number, mode: string, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function fchmodSync(fd: number, mode: number): void; + export function fchmodSync(fd: number, mode: string): void; + export function lchmod(path: string, mode: number, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function lchmod(path: string, mode: string, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function lchmodSync(path: string, mode: number): void; + export function lchmodSync(path: string, mode: string): void; + export function stat(path: string, callback?: (err: NodeJS.ErrnoException, stats: Stats) => any): void; + export function lstat(path: string, callback?: (err: NodeJS.ErrnoException, stats: Stats) => any): void; + export function fstat(fd: number, callback?: (err: NodeJS.ErrnoException, stats: Stats) => any): void; + export function statSync(path: string): Stats; + export function lstatSync(path: string): Stats; + export function fstatSync(fd: number): Stats; + export function link(srcpath: string, dstpath: string, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function linkSync(srcpath: string, dstpath: string): void; + export function symlink(srcpath: string, dstpath: string, type?: string, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function symlinkSync(srcpath: string, dstpath: string, type?: string): void; + export function readlink(path: string, callback?: (err: NodeJS.ErrnoException, linkString: string) => any): void; + export function readlinkSync(path: string): string; + export function realpath(path: string, callback?: (err: NodeJS.ErrnoException, resolvedPath: string) => any): void; + export function realpath(path: string, cache: {[path: string]: string}, callback: (err: NodeJS.ErrnoException, resolvedPath: string) =>any): void; + export function realpathSync(path: string, cache?: { [path: string]: string }): string; + /* + * Asynchronous unlink - deletes the file specified in {path} + * + * @param path + * @param callback No arguments other than a possible exception are given to the completion callback. + */ + export function unlink(path: string, callback?: (err?: NodeJS.ErrnoException) => void): void; + /* + * Synchronous unlink - deletes the file specified in {path} + * + * @param path + */ + export function unlinkSync(path: string): void; + /* + * Asynchronous rmdir - removes the directory specified in {path} + * + * @param path + * @param callback No arguments other than a possible exception are given to the completion callback. + */ + export function rmdir(path: string, callback?: (err?: NodeJS.ErrnoException) => void): void; + /* + * Synchronous rmdir - removes the directory specified in {path} + * + * @param path + */ + export function rmdirSync(path: string): void; + /* + * Asynchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. + * + * @param path + * @param callback No arguments other than a possible exception are given to the completion callback. + */ + export function mkdir(path: string, callback?: (err?: NodeJS.ErrnoException) => void): void; + /* + * Asynchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. + * + * @param path + * @param mode + * @param callback No arguments other than a possible exception are given to the completion callback. + */ + export function mkdir(path: string, mode: number, callback?: (err?: NodeJS.ErrnoException) => void): void; + /* + * Asynchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. + * + * @param path + * @param mode + * @param callback No arguments other than a possible exception are given to the completion callback. + */ + export function mkdir(path: string, mode: string, callback?: (err?: NodeJS.ErrnoException) => void): void; + /* + * Synchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. + * + * @param path + * @param mode + * @param callback No arguments other than a possible exception are given to the completion callback. + */ + export function mkdirSync(path: string, mode?: number): void; + /* + * Synchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. + * + * @param path + * @param mode + * @param callback No arguments other than a possible exception are given to the completion callback. + */ + export function mkdirSync(path: string, mode?: string): void; + /* + * Asynchronous mkdtemp - Creates a unique temporary directory. Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * + * @param prefix + * @param callback The created folder path is passed as a string to the callback's second parameter. + */ + export function mkdtemp(prefix: string, callback?: (err: NodeJS.ErrnoException, folder: string) => void): void; + /* + * Synchronous mkdtemp - Creates a unique temporary directory. Generates six random characters to be appended behind a required prefix to create a unique temporary directory. + * + * @param prefix + * @returns Returns the created folder path. + */ + export function mkdtempSync(prefix: string): string; + export function readdir(path: string, callback?: (err: NodeJS.ErrnoException, files: string[]) => void): void; + export function readdirSync(path: string): string[]; + export function close(fd: number, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function closeSync(fd: number): void; + export function open(path: string, flags: string, callback?: (err: NodeJS.ErrnoException, fd: number) => any): void; + export function open(path: string, flags: string, mode: number, callback?: (err: NodeJS.ErrnoException, fd: number) => any): void; + export function open(path: string, flags: string, mode: string, callback?: (err: NodeJS.ErrnoException, fd: number) => any): void; + export function openSync(path: string, flags: string, mode?: number): number; + export function openSync(path: string, flags: string, mode?: string): number; + export function utimes(path: string, atime: number, mtime: number, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function utimes(path: string, atime: Date, mtime: Date, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function utimesSync(path: string, atime: number, mtime: number): void; + export function utimesSync(path: string, atime: Date, mtime: Date): void; + export function futimes(fd: number, atime: number, mtime: number, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function futimes(fd: number, atime: Date, mtime: Date, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function futimesSync(fd: number, atime: number, mtime: number): void; + export function futimesSync(fd: number, atime: Date, mtime: Date): void; + export function fsync(fd: number, callback?: (err?: NodeJS.ErrnoException) => void): void; + export function fsyncSync(fd: number): void; + export function write(fd: number, buffer: Buffer, offset: number, length: number, position: number, callback?: (err: NodeJS.ErrnoException, written: number, buffer: Buffer) => void): void; + export function write(fd: number, buffer: Buffer, offset: number, length: number, callback?: (err: NodeJS.ErrnoException, written: number, buffer: Buffer) => void): void; + export function write(fd: number, data: any, callback?: (err: NodeJS.ErrnoException, written: number, str: string) => void): void; + export function write(fd: number, data: any, offset: number, callback?: (err: NodeJS.ErrnoException, written: number, str: string) => void): void; + export function write(fd: number, data: any, offset: number, encoding: string, callback?: (err: NodeJS.ErrnoException, written: number, str: string) => void): void; + export function writeSync(fd: number, buffer: Buffer, offset: number, length: number, position?: number): number; + export function writeSync(fd: number, data: any, position?: number, enconding?: string): number; + export function read(fd: number, buffer: Buffer, offset: number, length: number, position: number, callback?: (err: NodeJS.ErrnoException, bytesRead: number, buffer: Buffer) => void): void; + export function readSync(fd: number, buffer: Buffer, offset: number, length: number, position: number): number; + /* + * Asynchronous readFile - Asynchronously reads the entire contents of a file. + * + * @param fileName + * @param encoding + * @param callback - The callback is passed two arguments (err, data), where data is the contents of the file. + */ + export function readFile(filename: string, encoding: string, callback: (err: NodeJS.ErrnoException, data: string) => void): void; + /* + * Asynchronous readFile - Asynchronously reads the entire contents of a file. + * + * @param fileName + * @param options An object with optional {encoding} and {flag} properties. If {encoding} is specified, readFile returns a string; otherwise it returns a Buffer. + * @param callback - The callback is passed two arguments (err, data), where data is the contents of the file. + */ + export function readFile(filename: string, options: { encoding: string; flag?: string; }, callback: (err: NodeJS.ErrnoException, data: string) => void): void; + /* + * Asynchronous readFile - Asynchronously reads the entire contents of a file. + * + * @param fileName + * @param options An object with optional {encoding} and {flag} properties. If {encoding} is specified, readFile returns a string; otherwise it returns a Buffer. + * @param callback - The callback is passed two arguments (err, data), where data is the contents of the file. + */ + export function readFile(filename: string, options: { flag?: string; }, callback: (err: NodeJS.ErrnoException, data: Buffer) => void): void; + /* + * Asynchronous readFile - Asynchronously reads the entire contents of a file. + * + * @param fileName + * @param callback - The callback is passed two arguments (err, data), where data is the contents of the file. + */ + export function readFile(filename: string, callback: (err: NodeJS.ErrnoException, data: Buffer) => void): void; + /* + * Synchronous readFile - Synchronously reads the entire contents of a file. + * + * @param fileName + * @param encoding + */ + export function readFileSync(filename: string, encoding: string): string; + /* + * Synchronous readFile - Synchronously reads the entire contents of a file. + * + * @param fileName + * @param options An object with optional {encoding} and {flag} properties. If {encoding} is specified, readFileSync returns a string; otherwise it returns a Buffer. + */ + export function readFileSync(filename: string, options: { encoding: string; flag?: string; }): string; + /* + * Synchronous readFile - Synchronously reads the entire contents of a file. + * + * @param fileName + * @param options An object with optional {encoding} and {flag} properties. If {encoding} is specified, readFileSync returns a string; otherwise it returns a Buffer. + */ + export function readFileSync(filename: string, options?: { flag?: string; }): Buffer; + export function writeFile(filename: string, data: any, callback?: (err: NodeJS.ErrnoException) => void): void; + export function writeFile(filename: string, data: any, options: { encoding?: string; mode?: number; flag?: string; }, callback?: (err: NodeJS.ErrnoException) => void): void; + export function writeFile(filename: string, data: any, options: { encoding?: string; mode?: string; flag?: string; }, callback?: (err: NodeJS.ErrnoException) => void): void; + export function writeFileSync(filename: string, data: any, options?: { encoding?: string; mode?: number; flag?: string; }): void; + export function writeFileSync(filename: string, data: any, options?: { encoding?: string; mode?: string; flag?: string; }): void; + export function appendFile(filename: string, data: any, options: { encoding?: string; mode?: number; flag?: string; }, callback?: (err: NodeJS.ErrnoException) => void): void; + export function appendFile(filename: string, data: any, options: { encoding?: string; mode?: string; flag?: string; }, callback?: (err: NodeJS.ErrnoException) => void): void; + export function appendFile(filename: string, data: any, callback?: (err: NodeJS.ErrnoException) => void): void; + export function appendFileSync(filename: string, data: any, options?: { encoding?: string; mode?: number; flag?: string; }): void; + export function appendFileSync(filename: string, data: any, options?: { encoding?: string; mode?: string; flag?: string; }): void; + export function watchFile(filename: string, listener: (curr: Stats, prev: Stats) => void): void; + export function watchFile(filename: string, options: { persistent?: boolean; interval?: number; }, listener: (curr: Stats, prev: Stats) => void): void; + export function unwatchFile(filename: string, listener?: (curr: Stats, prev: Stats) => void): void; + export function watch(filename: string, listener?: (event: string, filename: string) => any): FSWatcher; + export function watch(filename: string, options: { persistent?: boolean; }, listener?: (event: string, filename: string) => any): FSWatcher; + export function exists(path: string, callback?: (exists: boolean) => void): void; + export function existsSync(path: string): boolean; + /** Constant for fs.access(). File is visible to the calling process. */ + export var F_OK: number; + /** Constant for fs.access(). File can be read by the calling process. */ + export var R_OK: number; + /** Constant for fs.access(). File can be written by the calling process. */ + export var W_OK: number; + /** Constant for fs.access(). File can be executed by the calling process. */ + export var X_OK: number; + /** Tests a user's permissions for the file specified by path. */ + export function access(path: string, callback: (err: NodeJS.ErrnoException) => void): void; + export function access(path: string, mode: number, callback: (err: NodeJS.ErrnoException) => void): void; + /** Synchronous version of fs.access. This throws if any accessibility checks fail, and does nothing otherwise. */ + export function accessSync(path: string, mode ?: number): void; + export function createReadStream(path: string, options?: { + flags?: string; + encoding?: string; + fd?: number; + mode?: number; + autoClose?: boolean; + }): ReadStream; + export function createWriteStream(path: string, options?: { + flags?: string; + encoding?: string; + fd?: number; + mode?: number; + }): WriteStream; +} + +declare module "path" { + + /** + * A parsed path object generated by path.parse() or consumed by path.format(). + */ + export interface ParsedPath { + /** + * The root of the path such as '/' or 'c:\' + */ + root: string; + /** + * The full directory path such as '/home/user/dir' or 'c:\path\dir' + */ + dir: string; + /** + * The file name including extension (if any) such as 'index.html' + */ + base: string; + /** + * The file extension (if any) such as '.html' + */ + ext: string; + /** + * The file name without extension (if any) such as 'index' + */ + name: string; + } + + /** + * Normalize a string path, reducing '..' and '.' parts. + * When multiple slashes are found, they're replaced by a single one; when the path contains a trailing slash, it is preserved. On Windows backslashes are used. + * + * @param p string path to normalize. + */ + export function normalize(p: string): string; + /** + * Join all arguments together and normalize the resulting path. + * Arguments must be strings. In v0.8, non-string arguments were silently ignored. In v0.10 and up, an exception is thrown. + * + * @param paths string paths to join. + */ + export function join(...paths: any[]): string; + /** + * Join all arguments together and normalize the resulting path. + * Arguments must be strings. In v0.8, non-string arguments were silently ignored. In v0.10 and up, an exception is thrown. + * + * @param paths string paths to join. + */ + export function join(...paths: string[]): string; + /** + * The right-most parameter is considered {to}. Other parameters are considered an array of {from}. + * + * Starting from leftmost {from} paramter, resolves {to} to an absolute path. + * + * If {to} isn't already absolute, {from} arguments are prepended in right to left order, until an absolute path is found. If after using all {from} paths still no absolute path is found, the current working directory is used as well. The resulting path is normalized, and trailing slashes are removed unless the path gets resolved to the root directory. + * + * @param pathSegments string paths to join. Non-string arguments are ignored. + */ + export function resolve(...pathSegments: any[]): string; + /** + * Determines whether {path} is an absolute path. An absolute path will always resolve to the same location, regardless of the working directory. + * + * @param path path to test. + */ + export function isAbsolute(path: string): boolean; + /** + * Solve the relative path from {from} to {to}. + * At times we have two absolute paths, and we need to derive the relative path from one to the other. This is actually the reverse transform of path.resolve. + * + * @param from + * @param to + */ + export function relative(from: string, to: string): string; + /** + * Return the directory name of a path. Similar to the Unix dirname command. + * + * @param p the path to evaluate. + */ + export function dirname(p: string): string; + /** + * Return the last portion of a path. Similar to the Unix basename command. + * Often used to extract the file name from a fully qualified path. + * + * @param p the path to evaluate. + * @param ext optionally, an extension to remove from the result. + */ + export function basename(p: string, ext?: string): string; + /** + * Return the extension of the path, from the last '.' to end of string in the last portion of the path. + * If there is no '.' in the last portion of the path or the first character of it is '.', then it returns an empty string + * + * @param p the path to evaluate. + */ + export function extname(p: string): string; + /** + * The platform-specific file separator. '\\' or '/'. + */ + export var sep: string; + /** + * The platform-specific file delimiter. ';' or ':'. + */ + export var delimiter: string; + /** + * Returns an object from a path string - the opposite of format(). + * + * @param pathString path to evaluate. + */ + export function parse(pathString: string): ParsedPath; + /** + * Returns a path string from an object - the opposite of parse(). + * + * @param pathString path to evaluate. + */ + export function format(pathObject: ParsedPath): string; + + export module posix { + export function normalize(p: string): string; + export function join(...paths: any[]): string; + export function resolve(...pathSegments: any[]): string; + export function isAbsolute(p: string): boolean; + export function relative(from: string, to: string): string; + export function dirname(p: string): string; + export function basename(p: string, ext?: string): string; + export function extname(p: string): string; + export var sep: string; + export var delimiter: string; + export function parse(p: string): ParsedPath; + export function format(pP: ParsedPath): string; + } + + export module win32 { + export function normalize(p: string): string; + export function join(...paths: any[]): string; + export function resolve(...pathSegments: any[]): string; + export function isAbsolute(p: string): boolean; + export function relative(from: string, to: string): string; + export function dirname(p: string): string; + export function basename(p: string, ext?: string): string; + export function extname(p: string): string; + export var sep: string; + export var delimiter: string; + export function parse(p: string): ParsedPath; + export function format(pP: ParsedPath): string; + } +} + +declare module "string_decoder" { + export interface NodeStringDecoder { + write(buffer: Buffer): string; + detectIncompleteChar(buffer: Buffer): number; + } + export var StringDecoder: { + new (encoding: string): NodeStringDecoder; + }; +} + +declare module "tls" { + import * as crypto from "crypto"; + import * as net from "net"; + import * as stream from "stream"; + + var CLIENT_RENEG_LIMIT: number; + var CLIENT_RENEG_WINDOW: number; + + export interface TlsOptions { + host?: string; + port?: number; + pfx?: any; //string or buffer + key?: any; //string or buffer + passphrase?: string; + cert?: any; + ca?: any; //string or buffer + crl?: any; //string or string array + ciphers?: string; + honorCipherOrder?: any; + requestCert?: boolean; + rejectUnauthorized?: boolean; + NPNProtocols?: any; //array or Buffer; + SNICallback?: (servername: string) => any; + } + + export interface ConnectionOptions { + host?: string; + port?: number; + socket?: net.Socket; + pfx?: string | Buffer + key?: string | Buffer + passphrase?: string; + cert?: string | Buffer + ca?: (string | Buffer)[]; + rejectUnauthorized?: boolean; + NPNProtocols?: (string | Buffer)[]; + servername?: string; + } + + export interface Server extends net.Server { + close(): Server; + address(): { port: number; family: string; address: string; }; + addContext(hostName: string, credentials: { + key: string; + cert: string; + ca: string; + }): void; + maxConnections: number; + connections: number; + } + + export interface ClearTextStream extends stream.Duplex { + authorized: boolean; + authorizationError: Error; + getPeerCertificate(): any; + getCipher: { + name: string; + version: string; + }; + address: { + port: number; + family: string; + address: string; + }; + remoteAddress: string; + remotePort: number; + } + + export interface SecurePair { + encrypted: any; + cleartext: any; + } + + export interface SecureContextOptions { + pfx?: string | Buffer; + key?: string | Buffer; + passphrase?: string; + cert?: string | Buffer; + ca?: string | Buffer; + crl?: string | string[] + ciphers?: string; + honorCipherOrder?: boolean; + } + + export interface SecureContext { + context: any; + } + + export function createServer(options: TlsOptions, secureConnectionListener?: (cleartextStream: ClearTextStream) =>void ): Server; + export function connect(options: TlsOptions, secureConnectionListener?: () =>void ): ClearTextStream; + export function connect(port: number, host?: string, options?: ConnectionOptions, secureConnectListener?: () =>void ): ClearTextStream; + export function connect(port: number, options?: ConnectionOptions, secureConnectListener?: () =>void ): ClearTextStream; + export function createSecurePair(credentials?: crypto.Credentials, isServer?: boolean, requestCert?: boolean, rejectUnauthorized?: boolean): SecurePair; + export function createSecureContext(details: SecureContextOptions): SecureContext; +} + +declare module "crypto" { + export interface CredentialDetails { + pfx: string; + key: string; + passphrase: string; + cert: string; + ca: string | string[]; + crl: string | string[]; + ciphers: string; + } + export interface Credentials { context?: any; } + export function createCredentials(details: CredentialDetails): Credentials; + export function createHash(algorithm: string): Hash; + export function createHmac(algorithm: string, key: string): Hmac; + export function createHmac(algorithm: string, key: Buffer): Hmac; + export interface Hash { + update(data: any, input_encoding?: string): Hash; + digest(encoding: 'buffer'): Buffer; + digest(encoding: string): any; + digest(): Buffer; + } + export interface Hmac extends NodeJS.ReadWriteStream { + update(data: any, input_encoding?: string): Hmac; + digest(encoding: 'buffer'): Buffer; + digest(encoding: string): any; + digest(): Buffer; + } + export function createCipher(algorithm: string, password: any): Cipher; + export function createCipheriv(algorithm: string, key: any, iv: any): Cipher; + export interface Cipher extends NodeJS.ReadWriteStream { + update(data: Buffer): Buffer; + update(data: string, input_encoding: "utf8"|"ascii"|"binary"): Buffer; + update(data: Buffer, input_encoding: any, output_encoding: "binary"|"base64"|"hex"): string; + update(data: string, input_encoding: "utf8"|"ascii"|"binary", output_encoding: "binary"|"base64"|"hex"): string; + final(): Buffer; + final(output_encoding: string): string; + setAutoPadding(auto_padding: boolean): void; + getAuthTag(): Buffer; + } + export function createDecipher(algorithm: string, password: any): Decipher; + export function createDecipheriv(algorithm: string, key: any, iv: any): Decipher; + export interface Decipher extends NodeJS.ReadWriteStream { + update(data: Buffer): Buffer; + update(data: string, input_encoding: "binary"|"base64"|"hex"): Buffer; + update(data: Buffer, input_encoding: any, output_encoding: "utf8"|"ascii"|"binary"): string; + update(data: string, input_encoding: "binary"|"base64"|"hex", output_encoding: "utf8"|"ascii"|"binary"): string; + final(): Buffer; + final(output_encoding: string): string; + setAutoPadding(auto_padding: boolean): void; + setAuthTag(tag: Buffer): void; + } + export function createSign(algorithm: string): Signer; + export interface Signer extends NodeJS.WritableStream { + update(data: any): void; + sign(private_key: string, output_format: string): string; + } + export function createVerify(algorith: string): Verify; + export interface Verify extends NodeJS.WritableStream { + update(data: any): void; + verify(object: string, signature: string, signature_format?: string): boolean; + } + export function createDiffieHellman(prime_length: number): DiffieHellman; + export function createDiffieHellman(prime: number, encoding?: string): DiffieHellman; + export interface DiffieHellman { + generateKeys(encoding?: string): string; + computeSecret(other_public_key: string, input_encoding?: string, output_encoding?: string): string; + getPrime(encoding?: string): string; + getGenerator(encoding: string): string; + getPublicKey(encoding?: string): string; + getPrivateKey(encoding?: string): string; + setPublicKey(public_key: string, encoding?: string): void; + setPrivateKey(public_key: string, encoding?: string): void; + } + export function getDiffieHellman(group_name: string): DiffieHellman; + export function pbkdf2(password: string|Buffer, salt: string|Buffer, iterations: number, keylen: number, callback: (err: Error, derivedKey: Buffer) => any): void; + export function pbkdf2(password: string|Buffer, salt: string|Buffer, iterations: number, keylen: number, digest: string, callback: (err: Error, derivedKey: Buffer) => any): void; + export function pbkdf2Sync(password: string|Buffer, salt: string|Buffer, iterations: number, keylen: number) : Buffer; + export function pbkdf2Sync(password: string|Buffer, salt: string|Buffer, iterations: number, keylen: number, digest: string) : Buffer; + export function randomBytes(size: number): Buffer; + export function randomBytes(size: number, callback: (err: Error, buf: Buffer) =>void ): void; + export function pseudoRandomBytes(size: number): Buffer; + export function pseudoRandomBytes(size: number, callback: (err: Error, buf: Buffer) =>void ): void; + export interface RsaPublicKey { + key: string; + padding?: any; + } + export interface RsaPrivateKey { + key: string; + passphrase?: string, + padding?: any; + } + export function publicEncrypt(public_key: string|RsaPublicKey, buffer: Buffer): Buffer + export function privateDecrypt(private_key: string|RsaPrivateKey, buffer: Buffer): Buffer +} + +declare module "stream" { + import * as events from "events"; + + export class Stream extends events.EventEmitter { + pipe(destination: T, options?: { end?: boolean; }): T; + } + + export interface ReadableOptions { + highWaterMark?: number; + encoding?: string; + objectMode?: boolean; + } + + export class Readable extends events.EventEmitter implements NodeJS.ReadableStream { + readable: boolean; + constructor(opts?: ReadableOptions); + _read(size: number): void; + read(size?: number): any; + setEncoding(encoding: string): void; + pause(): void; + resume(): void; + pipe(destination: T, options?: { end?: boolean; }): T; + unpipe(destination?: T): void; + unshift(chunk: any): void; + wrap(oldStream: NodeJS.ReadableStream): NodeJS.ReadableStream; + push(chunk: any, encoding?: string): boolean; + } + + export interface WritableOptions { + highWaterMark?: number; + decodeStrings?: boolean; + objectMode?: boolean; + } + + export class Writable extends events.EventEmitter implements NodeJS.WritableStream { + writable: boolean; + constructor(opts?: WritableOptions); + _write(chunk: any, encoding: string, callback: Function): void; + write(chunk: any, cb?: Function): boolean; + write(chunk: any, encoding?: string, cb?: Function): boolean; + end(): void; + end(chunk: any, cb?: Function): void; + end(chunk: any, encoding?: string, cb?: Function): void; + } + + export interface DuplexOptions extends ReadableOptions, WritableOptions { + allowHalfOpen?: boolean; + } + + // Note: Duplex extends both Readable and Writable. + export class Duplex extends Readable implements NodeJS.ReadWriteStream { + writable: boolean; + constructor(opts?: DuplexOptions); + _write(chunk: any, encoding: string, callback: Function): void; + write(chunk: any, cb?: Function): boolean; + write(chunk: any, encoding?: string, cb?: Function): boolean; + end(): void; + end(chunk: any, cb?: Function): void; + end(chunk: any, encoding?: string, cb?: Function): void; + } + + export interface TransformOptions extends ReadableOptions, WritableOptions {} + + // Note: Transform lacks the _read and _write methods of Readable/Writable. + export class Transform extends events.EventEmitter implements NodeJS.ReadWriteStream { + readable: boolean; + writable: boolean; + constructor(opts?: TransformOptions); + _transform(chunk: any, encoding: string, callback: Function): void; + _flush(callback: Function): void; + read(size?: number): any; + setEncoding(encoding: string): void; + pause(): void; + resume(): void; + pipe(destination: T, options?: { end?: boolean; }): T; + unpipe(destination?: T): void; + unshift(chunk: any): void; + wrap(oldStream: NodeJS.ReadableStream): NodeJS.ReadableStream; + push(chunk: any, encoding?: string): boolean; + write(chunk: any, cb?: Function): boolean; + write(chunk: any, encoding?: string, cb?: Function): boolean; + end(): void; + end(chunk: any, cb?: Function): void; + end(chunk: any, encoding?: string, cb?: Function): void; + } + + export class PassThrough extends Transform {} +} + +declare module "util" { + export interface InspectOptions { + showHidden?: boolean; + depth?: number; + colors?: boolean; + customInspect?: boolean; + } + + export function format(format: any, ...param: any[]): string; + export function debug(string: string): void; + export function error(...param: any[]): void; + export function puts(...param: any[]): void; + export function print(...param: any[]): void; + export function log(string: string): void; + export function inspect(object: any, showHidden?: boolean, depth?: number, color?: boolean): string; + export function inspect(object: any, options: InspectOptions): string; + export function isArray(object: any): boolean; + export function isRegExp(object: any): boolean; + export function isDate(object: any): boolean; + export function isError(object: any): boolean; + export function inherits(constructor: any, superConstructor: any): void; + export function debuglog(key:string): (msg:string,...param: any[])=>void; +} + +declare module "assert" { + function internal (value: any, message?: string): void; + namespace internal { + export class AssertionError implements Error { + name: string; + message: string; + actual: any; + expected: any; + operator: string; + generatedMessage: boolean; + + constructor(options?: {message?: string; actual?: any; expected?: any; + operator?: string; stackStartFunction?: Function}); + } + + export function fail(actual?: any, expected?: any, message?: string, operator?: string): void; + export function ok(value: any, message?: string): void; + export function equal(actual: any, expected: any, message?: string): void; + export function notEqual(actual: any, expected: any, message?: string): void; + export function deepEqual(actual: any, expected: any, message?: string): void; + export function notDeepEqual(acutal: any, expected: any, message?: string): void; + export function strictEqual(actual: any, expected: any, message?: string): void; + export function notStrictEqual(actual: any, expected: any, message?: string): void; + export function deepStrictEqual(actual: any, expected: any, message?: string): void; + export function notDeepStrictEqual(actual: any, expected: any, message?: string): void; + export var throws: { + (block: Function, message?: string): void; + (block: Function, error: Function, message?: string): void; + (block: Function, error: RegExp, message?: string): void; + (block: Function, error: (err: any) => boolean, message?: string): void; + }; + + export var doesNotThrow: { + (block: Function, message?: string): void; + (block: Function, error: Function, message?: string): void; + (block: Function, error: RegExp, message?: string): void; + (block: Function, error: (err: any) => boolean, message?: string): void; + }; + + export function ifError(value: any): void; + } + + export = internal; +} + +declare module "tty" { + import * as net from "net"; + + export function isatty(fd: number): boolean; + export interface ReadStream extends net.Socket { + isRaw: boolean; + setRawMode(mode: boolean): void; + isTTY: boolean; + } + export interface WriteStream extends net.Socket { + columns: number; + rows: number; + isTTY: boolean; + } +} + +declare module "domain" { + import * as events from "events"; + + export class Domain extends events.EventEmitter implements NodeJS.Domain { + run(fn: Function): void; + add(emitter: events.EventEmitter): void; + remove(emitter: events.EventEmitter): void; + bind(cb: (err: Error, data: any) => any): any; + intercept(cb: (data: any) => any): any; + dispose(): void; + } + + export function create(): Domain; +} + +declare module "constants" { + export var E2BIG: number; + export var EACCES: number; + export var EADDRINUSE: number; + export var EADDRNOTAVAIL: number; + export var EAFNOSUPPORT: number; + export var EAGAIN: number; + export var EALREADY: number; + export var EBADF: number; + export var EBADMSG: number; + export var EBUSY: number; + export var ECANCELED: number; + export var ECHILD: number; + export var ECONNABORTED: number; + export var ECONNREFUSED: number; + export var ECONNRESET: number; + export var EDEADLK: number; + export var EDESTADDRREQ: number; + export var EDOM: number; + export var EEXIST: number; + export var EFAULT: number; + export var EFBIG: number; + export var EHOSTUNREACH: number; + export var EIDRM: number; + export var EILSEQ: number; + export var EINPROGRESS: number; + export var EINTR: number; + export var EINVAL: number; + export var EIO: number; + export var EISCONN: number; + export var EISDIR: number; + export var ELOOP: number; + export var EMFILE: number; + export var EMLINK: number; + export var EMSGSIZE: number; + export var ENAMETOOLONG: number; + export var ENETDOWN: number; + export var ENETRESET: number; + export var ENETUNREACH: number; + export var ENFILE: number; + export var ENOBUFS: number; + export var ENODATA: number; + export var ENODEV: number; + export var ENOENT: number; + export var ENOEXEC: number; + export var ENOLCK: number; + export var ENOLINK: number; + export var ENOMEM: number; + export var ENOMSG: number; + export var ENOPROTOOPT: number; + export var ENOSPC: number; + export var ENOSR: number; + export var ENOSTR: number; + export var ENOSYS: number; + export var ENOTCONN: number; + export var ENOTDIR: number; + export var ENOTEMPTY: number; + export var ENOTSOCK: number; + export var ENOTSUP: number; + export var ENOTTY: number; + export var ENXIO: number; + export var EOPNOTSUPP: number; + export var EOVERFLOW: number; + export var EPERM: number; + export var EPIPE: number; + export var EPROTO: number; + export var EPROTONOSUPPORT: number; + export var EPROTOTYPE: number; + export var ERANGE: number; + export var EROFS: number; + export var ESPIPE: number; + export var ESRCH: number; + export var ETIME: number; + export var ETIMEDOUT: number; + export var ETXTBSY: number; + export var EWOULDBLOCK: number; + export var EXDEV: number; + export var WSAEINTR: number; + export var WSAEBADF: number; + export var WSAEACCES: number; + export var WSAEFAULT: number; + export var WSAEINVAL: number; + export var WSAEMFILE: number; + export var WSAEWOULDBLOCK: number; + export var WSAEINPROGRESS: number; + export var WSAEALREADY: number; + export var WSAENOTSOCK: number; + export var WSAEDESTADDRREQ: number; + export var WSAEMSGSIZE: number; + export var WSAEPROTOTYPE: number; + export var WSAENOPROTOOPT: number; + export var WSAEPROTONOSUPPORT: number; + export var WSAESOCKTNOSUPPORT: number; + export var WSAEOPNOTSUPP: number; + export var WSAEPFNOSUPPORT: number; + export var WSAEAFNOSUPPORT: number; + export var WSAEADDRINUSE: number; + export var WSAEADDRNOTAVAIL: number; + export var WSAENETDOWN: number; + export var WSAENETUNREACH: number; + export var WSAENETRESET: number; + export var WSAECONNABORTED: number; + export var WSAECONNRESET: number; + export var WSAENOBUFS: number; + export var WSAEISCONN: number; + export var WSAENOTCONN: number; + export var WSAESHUTDOWN: number; + export var WSAETOOMANYREFS: number; + export var WSAETIMEDOUT: number; + export var WSAECONNREFUSED: number; + export var WSAELOOP: number; + export var WSAENAMETOOLONG: number; + export var WSAEHOSTDOWN: number; + export var WSAEHOSTUNREACH: number; + export var WSAENOTEMPTY: number; + export var WSAEPROCLIM: number; + export var WSAEUSERS: number; + export var WSAEDQUOT: number; + export var WSAESTALE: number; + export var WSAEREMOTE: number; + export var WSASYSNOTREADY: number; + export var WSAVERNOTSUPPORTED: number; + export var WSANOTINITIALISED: number; + export var WSAEDISCON: number; + export var WSAENOMORE: number; + export var WSAECANCELLED: number; + export var WSAEINVALIDPROCTABLE: number; + export var WSAEINVALIDPROVIDER: number; + export var WSAEPROVIDERFAILEDINIT: number; + export var WSASYSCALLFAILURE: number; + export var WSASERVICE_NOT_FOUND: number; + export var WSATYPE_NOT_FOUND: number; + export var WSA_E_NO_MORE: number; + export var WSA_E_CANCELLED: number; + export var WSAEREFUSED: number; + export var SIGHUP: number; + export var SIGINT: number; + export var SIGILL: number; + export var SIGABRT: number; + export var SIGFPE: number; + export var SIGKILL: number; + export var SIGSEGV: number; + export var SIGTERM: number; + export var SIGBREAK: number; + export var SIGWINCH: number; + export var SSL_OP_ALL: number; + export var SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION: number; + export var SSL_OP_CIPHER_SERVER_PREFERENCE: number; + export var SSL_OP_CISCO_ANYCONNECT: number; + export var SSL_OP_COOKIE_EXCHANGE: number; + export var SSL_OP_CRYPTOPRO_TLSEXT_BUG: number; + export var SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS: number; + export var SSL_OP_EPHEMERAL_RSA: number; + export var SSL_OP_LEGACY_SERVER_CONNECT: number; + export var SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER: number; + export var SSL_OP_MICROSOFT_SESS_ID_BUG: number; + export var SSL_OP_MSIE_SSLV2_RSA_PADDING: number; + export var SSL_OP_NETSCAPE_CA_DN_BUG: number; + export var SSL_OP_NETSCAPE_CHALLENGE_BUG: number; + export var SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG: number; + export var SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG: number; + export var SSL_OP_NO_COMPRESSION: number; + export var SSL_OP_NO_QUERY_MTU: number; + export var SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION: number; + export var SSL_OP_NO_SSLv2: number; + export var SSL_OP_NO_SSLv3: number; + export var SSL_OP_NO_TICKET: number; + export var SSL_OP_NO_TLSv1: number; + export var SSL_OP_NO_TLSv1_1: number; + export var SSL_OP_NO_TLSv1_2: number; + export var SSL_OP_PKCS1_CHECK_1: number; + export var SSL_OP_PKCS1_CHECK_2: number; + export var SSL_OP_SINGLE_DH_USE: number; + export var SSL_OP_SINGLE_ECDH_USE: number; + export var SSL_OP_SSLEAY_080_CLIENT_DH_BUG: number; + export var SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG: number; + export var SSL_OP_TLS_BLOCK_PADDING_BUG: number; + export var SSL_OP_TLS_D5_BUG: number; + export var SSL_OP_TLS_ROLLBACK_BUG: number; + export var ENGINE_METHOD_DSA: number; + export var ENGINE_METHOD_DH: number; + export var ENGINE_METHOD_RAND: number; + export var ENGINE_METHOD_ECDH: number; + export var ENGINE_METHOD_ECDSA: number; + export var ENGINE_METHOD_CIPHERS: number; + export var ENGINE_METHOD_DIGESTS: number; + export var ENGINE_METHOD_STORE: number; + export var ENGINE_METHOD_PKEY_METHS: number; + export var ENGINE_METHOD_PKEY_ASN1_METHS: number; + export var ENGINE_METHOD_ALL: number; + export var ENGINE_METHOD_NONE: number; + export var DH_CHECK_P_NOT_SAFE_PRIME: number; + export var DH_CHECK_P_NOT_PRIME: number; + export var DH_UNABLE_TO_CHECK_GENERATOR: number; + export var DH_NOT_SUITABLE_GENERATOR: number; + export var NPN_ENABLED: number; + export var RSA_PKCS1_PADDING: number; + export var RSA_SSLV23_PADDING: number; + export var RSA_NO_PADDING: number; + export var RSA_PKCS1_OAEP_PADDING: number; + export var RSA_X931_PADDING: number; + export var RSA_PKCS1_PSS_PADDING: number; + export var POINT_CONVERSION_COMPRESSED: number; + export var POINT_CONVERSION_UNCOMPRESSED: number; + export var POINT_CONVERSION_HYBRID: number; + export var O_RDONLY: number; + export var O_WRONLY: number; + export var O_RDWR: number; + export var S_IFMT: number; + export var S_IFREG: number; + export var S_IFDIR: number; + export var S_IFCHR: number; + export var S_IFLNK: number; + export var O_CREAT: number; + export var O_EXCL: number; + export var O_TRUNC: number; + export var O_APPEND: number; + export var F_OK: number; + export var R_OK: number; + export var W_OK: number; + export var X_OK: number; + export var UV_UDP_REUSEADDR: number; +} \ No newline at end of file diff --git a/samples/react-multipage/typings/react/react-addons-shallow-compare.d.ts b/samples/react-multipage/typings/react/react-addons-shallow-compare.d.ts new file mode 100644 index 000000000..4fb9aa846 --- /dev/null +++ b/samples/react-multipage/typings/react/react-addons-shallow-compare.d.ts @@ -0,0 +1,19 @@ +// Type definitions for React v0.14 (react-addons-css-transition-group) +// Project: http://facebook.github.io/react/ +// Definitions by: Asana , AssureSign , Microsoft +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/// + +declare namespace __React { + namespace __Addons { + export function shallowCompare( + component: __React.Component, + nextProps: P, + nextState: S): boolean; + } +} + +declare module "react-addons-shallow-compare" { + export = __React.__Addons.shallowCompare; +} diff --git a/samples/react-multipage/typings/react/react-addons-test-utils.d.ts b/samples/react-multipage/typings/react/react-addons-test-utils.d.ts new file mode 100644 index 000000000..3b77ac4c5 --- /dev/null +++ b/samples/react-multipage/typings/react/react-addons-test-utils.d.ts @@ -0,0 +1,155 @@ +// Type definitions for React v0.14 (react-addons-test-utils) +// Project: http://facebook.github.io/react/ +// Definitions by: Asana , AssureSign , Microsoft +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +/// + +declare namespace __React { + interface SyntheticEventData { + altKey?: boolean; + button?: number; + buttons?: number; + clientX?: number; + clientY?: number; + changedTouches?: TouchList; + charCode?: boolean; + clipboardData?: DataTransfer; + ctrlKey?: boolean; + deltaMode?: number; + deltaX?: number; + deltaY?: number; + deltaZ?: number; + detail?: number; + getModifierState?(key: string): boolean; + key?: string; + keyCode?: number; + locale?: string; + location?: number; + metaKey?: boolean; + pageX?: number; + pageY?: number; + relatedTarget?: EventTarget; + repeat?: boolean; + screenX?: number; + screenY?: number; + shiftKey?: boolean; + targetTouches?: TouchList; + touches?: TouchList; + view?: AbstractView; + which?: number; + } + + interface EventSimulator { + (element: Element, eventData?: SyntheticEventData): void; + (component: Component, eventData?: SyntheticEventData): void; + } + + interface MockedComponentClass { + new(): any; + } + + class ShallowRenderer { + getRenderOutput>(): E; + getRenderOutput(): ReactElement; + render(element: ReactElement, context?: any): void; + unmount(): void; + } + + namespace __Addons { + namespace TestUtils { + namespace Simulate { + export var blur: EventSimulator; + export var change: EventSimulator; + export var click: EventSimulator; + export var cut: EventSimulator; + export var doubleClick: EventSimulator; + export var drag: EventSimulator; + export var dragEnd: EventSimulator; + export var dragEnter: EventSimulator; + export var dragExit: EventSimulator; + export var dragLeave: EventSimulator; + export var dragOver: EventSimulator; + export var dragStart: EventSimulator; + export var drop: EventSimulator; + export var focus: EventSimulator; + export var input: EventSimulator; + export var keyDown: EventSimulator; + export var keyPress: EventSimulator; + export var keyUp: EventSimulator; + export var mouseDown: EventSimulator; + export var mouseEnter: EventSimulator; + export var mouseLeave: EventSimulator; + export var mouseMove: EventSimulator; + export var mouseOut: EventSimulator; + export var mouseOver: EventSimulator; + export var mouseUp: EventSimulator; + export var paste: EventSimulator; + export var scroll: EventSimulator; + export var submit: EventSimulator; + export var touchCancel: EventSimulator; + export var touchEnd: EventSimulator; + export var touchMove: EventSimulator; + export var touchStart: EventSimulator; + export var wheel: EventSimulator; + } + + export function renderIntoDocument( + element: DOMElement): Element; + export function renderIntoDocument

( + element: ReactElement

): Component; + export function renderIntoDocument>( + element: ReactElement): C; + + export function mockComponent( + mocked: MockedComponentClass, mockTagName?: string): typeof TestUtils; + + export function isElementOfType( + element: ReactElement, type: ReactType): boolean; + export function isDOMComponent(instance: ReactInstance): boolean; + export function isCompositeComponent(instance: ReactInstance): boolean; + export function isCompositeComponentWithType( + instance: ReactInstance, + type: ComponentClass): boolean; + + export function findAllInRenderedTree( + root: Component, + fn: (i: ReactInstance) => boolean): ReactInstance[]; + + export function scryRenderedDOMComponentsWithClass( + root: Component, + className: string): Element[]; + export function findRenderedDOMComponentWithClass( + root: Component, + className: string): Element; + + export function scryRenderedDOMComponentsWithTag( + root: Component, + tagName: string): Element[]; + export function findRenderedDOMComponentWithTag( + root: Component, + tagName: string): Element; + + export function scryRenderedComponentsWithType

( + root: Component, + type: ComponentClass

): Component[]; + export function scryRenderedComponentsWithType>( + root: Component, + type: ComponentClass): C[]; + + export function findRenderedComponentWithType

( + root: Component, + type: ComponentClass

): Component; + export function findRenderedComponentWithType>( + root: Component, + type: ComponentClass): C; + + export function createRenderer(): ShallowRenderer; + } + } +} + +declare module "react-addons-test-utils" { + import TestUtils = __React.__Addons.TestUtils; + export = TestUtils; +} diff --git a/samples/react-multipage/typings/react/react-addons-update.d.ts b/samples/react-multipage/typings/react/react-addons-update.d.ts new file mode 100644 index 000000000..f1fe4c24f --- /dev/null +++ b/samples/react-multipage/typings/react/react-addons-update.d.ts @@ -0,0 +1,35 @@ +// Type definitions for React v0.14 (react-addons-update) +// Project: http://facebook.github.io/react/ +// Definitions by: Asana , AssureSign , Microsoft +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/// + +declare namespace __React { + interface UpdateSpecCommand { + $set?: any; + $merge?: {}; + $apply?(value: any): any; + } + + interface UpdateSpecPath { + [key: string]: UpdateSpec; + } + + type UpdateSpec = UpdateSpecCommand | UpdateSpecPath; + + interface UpdateArraySpec extends UpdateSpecCommand { + $push?: any[]; + $unshift?: any[]; + $splice?: any[][]; + } + + namespace __Addons { + export function update(value: any[], spec: UpdateArraySpec): any[]; + export function update(value: {}, spec: UpdateSpec): any; + } +} + +declare module "react-addons-update" { + export = __React.__Addons.update; +} diff --git a/samples/react-multipage/typings/react/react-dom.d.ts b/samples/react-multipage/typings/react/react-dom.d.ts new file mode 100644 index 000000000..80a0c604e --- /dev/null +++ b/samples/react-multipage/typings/react/react-dom.d.ts @@ -0,0 +1,66 @@ +// Type definitions for React v0.14 (react-dom) +// Project: http://facebook.github.io/react/ +// Definitions by: Asana , AssureSign , Microsoft +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +/// + +declare namespace __React { + namespace __DOM { + function findDOMNode(instance: ReactInstance): E; + function findDOMNode(instance: ReactInstance): Element; + + function render

( + element: DOMElement

, + container: Element, + callback?: (element: Element) => any): Element; + function render( + element: ClassicElement

, + container: Element, + callback?: (component: ClassicComponent) => any): ClassicComponent; + function render( + element: ReactElement

, + container: Element, + callback?: (component: Component) => any): Component; + + function unmountComponentAtNode(container: Element): boolean; + + var version: string; + + function unstable_batchedUpdates(callback: (a: A, b: B) => any, a: A, b: B): void; + function unstable_batchedUpdates(callback: (a: A) => any, a: A): void; + function unstable_batchedUpdates(callback: () => any): void; + + function unstable_renderSubtreeIntoContainer

( + parentComponent: Component, + nextElement: DOMElement

, + container: Element, + callback?: (element: Element) => any): Element; + function unstable_renderSubtreeIntoContainer( + parentComponent: Component, + nextElement: ClassicElement

, + container: Element, + callback?: (component: ClassicComponent) => any): ClassicComponent; + function unstable_renderSubtreeIntoContainer( + parentComponent: Component, + nextElement: ReactElement

, + container: Element, + callback?: (component: Component) => any): Component; + } + + namespace __DOMServer { + function renderToString(element: ReactElement): string; + function renderToStaticMarkup(element: ReactElement): string; + var version: string; + } +} + +declare module "react-dom" { + import DOM = __React.__DOM; + export = DOM; +} + +declare module "react-dom/server" { + import DOMServer = __React.__DOMServer; + export = DOMServer; +} diff --git a/samples/react-multipage/typings/react/react.d.ts b/samples/react-multipage/typings/react/react.d.ts new file mode 100644 index 000000000..94a763b17 --- /dev/null +++ b/samples/react-multipage/typings/react/react.d.ts @@ -0,0 +1,2284 @@ +// Type definitions for React v0.14 +// Project: http://facebook.github.io/react/ +// Definitions by: Asana , AssureSign , Microsoft +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +declare namespace __React { + + // + // React Elements + // ---------------------------------------------------------------------- + + type ReactType = string | ComponentClass | StatelessComponent; + + interface ReactElement

> { + type: string | ComponentClass

| StatelessComponent

; + props: P; + key: string | number; + ref: string | ((component: Component | Element) => any); + } + + interface ClassicElement

extends ReactElement

{ + type: ClassicComponentClass

; + ref: string | ((component: ClassicComponent) => any); + } + + interface DOMElement

> extends ReactElement

{ + type: string; + ref: string | ((element: Element) => any); + } + + interface ReactHTMLElement extends DOMElement> { + ref: string | ((element: HTMLElement) => any); + } + + interface ReactSVGElement extends DOMElement { + ref: string | ((element: SVGElement) => any); + } + + // + // Factories + // ---------------------------------------------------------------------- + + interface Factory

{ + (props?: P, ...children: ReactNode[]): ReactElement

; + } + + interface ClassicFactory

extends Factory

{ + (props?: P, ...children: ReactNode[]): ClassicElement

; + } + + interface DOMFactory

> extends Factory

{ + (props?: P, ...children: ReactNode[]): DOMElement

; + } + + type HTMLFactory = DOMFactory>; + type SVGFactory = DOMFactory; + + // + // React Nodes + // http://facebook.github.io/react/docs/glossary.html + // ---------------------------------------------------------------------- + + type ReactText = string | number; + type ReactChild = ReactElement | ReactText; + + // Should be Array but type aliases cannot be recursive + type ReactFragment = {} | Array; + type ReactNode = ReactChild | ReactFragment | boolean; + + // + // Top Level API + // ---------------------------------------------------------------------- + + function createClass(spec: ComponentSpec): ClassicComponentClass

; + + function createFactory

(type: string): DOMFactory

; + function createFactory

(type: ClassicComponentClass

): ClassicFactory

; + function createFactory

(type: ComponentClass

| StatelessComponent

): Factory

; + + function createElement

( + type: string, + props?: P, + ...children: ReactNode[]): DOMElement

; + function createElement

( + type: ClassicComponentClass

, + props?: P, + ...children: ReactNode[]): ClassicElement

; + function createElement

( + type: ComponentClass

| StatelessComponent

, + props?: P, + ...children: ReactNode[]): ReactElement

; + + function cloneElement

( + element: DOMElement

, + props?: P, + ...children: ReactNode[]): DOMElement

; + function cloneElement

( + element: ClassicElement

, + props?: P, + ...children: ReactNode[]): ClassicElement

; + function cloneElement

( + element: ReactElement

, + props?: P, + ...children: ReactNode[]): ReactElement

; + + function isValidElement(object: {}): boolean; + + var DOM: ReactDOM; + var PropTypes: ReactPropTypes; + var Children: ReactChildren; + + // + // Component API + // ---------------------------------------------------------------------- + + type ReactInstance = Component | Element; + + // Base component for plain JS classes + class Component implements ComponentLifecycle { + constructor(props?: P, context?: any); + setState(f: (prevState: S, props: P) => S, callback?: () => any): void; + setState(state: S, callback?: () => any): void; + forceUpdate(callBack?: () => any): void; + render(): JSX.Element; + props: P; + state: S; + context: {}; + refs: { + [key: string]: ReactInstance + }; + } + + interface ClassicComponent extends Component { + replaceState(nextState: S, callback?: () => any): void; + isMounted(): boolean; + getInitialState?(): S; + } + + interface ChildContextProvider { + getChildContext(): CC; + } + + // + // Class Interfaces + // ---------------------------------------------------------------------- + + interface StatelessComponent

{ + (props?: P, context?: any): ReactElement; + propTypes?: ValidationMap

; + contextTypes?: ValidationMap; + defaultProps?: P; + displayName?: string; + } + + interface ComponentClass

{ + new(props?: P, context?: any): Component; + propTypes?: ValidationMap

; + contextTypes?: ValidationMap; + childContextTypes?: ValidationMap; + defaultProps?: P; + } + + interface ClassicComponentClass

extends ComponentClass

{ + new(props?: P, context?: any): ClassicComponent; + getDefaultProps?(): P; + displayName?: string; + } + + // + // Component Specs and Lifecycle + // ---------------------------------------------------------------------- + + interface ComponentLifecycle { + componentWillMount?(): void; + componentDidMount?(): void; + componentWillReceiveProps?(nextProps: P, nextContext: any): void; + shouldComponentUpdate?(nextProps: P, nextState: S, nextContext: any): boolean; + componentWillUpdate?(nextProps: P, nextState: S, nextContext: any): void; + componentDidUpdate?(prevProps: P, prevState: S, prevContext: any): void; + componentWillUnmount?(): void; + } + + interface Mixin extends ComponentLifecycle { + mixins?: Mixin; + statics?: { + [key: string]: any; + }; + + displayName?: string; + propTypes?: ValidationMap; + contextTypes?: ValidationMap; + childContextTypes?: ValidationMap; + + getDefaultProps?(): P; + getInitialState?(): S; + } + + interface ComponentSpec extends Mixin { + render(): ReactElement; + + [propertyName: string]: any; + } + + // + // Event System + // ---------------------------------------------------------------------- + + interface SyntheticEvent { + bubbles: boolean; + cancelable: boolean; + currentTarget: EventTarget; + defaultPrevented: boolean; + eventPhase: number; + isTrusted: boolean; + nativeEvent: Event; + preventDefault(): void; + stopPropagation(): void; + target: EventTarget; + timeStamp: Date; + type: string; + } + + interface ClipboardEvent extends SyntheticEvent { + clipboardData: DataTransfer; + } + + interface CompositionEvent extends SyntheticEvent { + data: string; + } + + interface DragEvent extends MouseEvent { + dataTransfer: DataTransfer; + } + + interface FocusEvent extends SyntheticEvent { + relatedTarget: EventTarget; + } + + interface FormEvent extends SyntheticEvent { + } + + interface KeyboardEvent extends SyntheticEvent { + altKey: boolean; + charCode: number; + ctrlKey: boolean; + getModifierState(key: string): boolean; + key: string; + keyCode: number; + locale: string; + location: number; + metaKey: boolean; + repeat: boolean; + shiftKey: boolean; + which: number; + } + + interface MouseEvent extends SyntheticEvent { + altKey: boolean; + button: number; + buttons: number; + clientX: number; + clientY: number; + ctrlKey: boolean; + getModifierState(key: string): boolean; + metaKey: boolean; + pageX: number; + pageY: number; + relatedTarget: EventTarget; + screenX: number; + screenY: number; + shiftKey: boolean; + } + + interface TouchEvent extends SyntheticEvent { + altKey: boolean; + changedTouches: TouchList; + ctrlKey: boolean; + getModifierState(key: string): boolean; + metaKey: boolean; + shiftKey: boolean; + targetTouches: TouchList; + touches: TouchList; + } + + interface UIEvent extends SyntheticEvent { + detail: number; + view: AbstractView; + } + + interface WheelEvent extends SyntheticEvent { + deltaMode: number; + deltaX: number; + deltaY: number; + deltaZ: number; + } + + // + // Event Handler Types + // ---------------------------------------------------------------------- + + interface EventHandler { + (event: E): void; + } + + type ReactEventHandler = EventHandler; + + type ClipboardEventHandler = EventHandler; + type CompositionEventHandler = EventHandler; + type DragEventHandler = EventHandler; + type FocusEventHandler = EventHandler; + type FormEventHandler = EventHandler; + type KeyboardEventHandler = EventHandler; + type MouseEventHandler = EventHandler; + type TouchEventHandler = EventHandler; + type UIEventHandler = EventHandler; + type WheelEventHandler = EventHandler; + + // + // Props / DOM Attributes + // ---------------------------------------------------------------------- + + interface Props { + children?: ReactNode; + key?: string | number; + ref?: string | ((component: T) => any); + } + + interface HTMLProps extends HTMLAttributes, Props { + } + + interface SVGProps extends SVGAttributes, Props { + } + + interface DOMAttributes { + dangerouslySetInnerHTML?: { + __html: string; + }; + + // Clipboard Events + onCopy?: ClipboardEventHandler; + onCut?: ClipboardEventHandler; + onPaste?: ClipboardEventHandler; + + // Composition Events + onCompositionEnd?: CompositionEventHandler; + onCompositionStart?: CompositionEventHandler; + onCompositionUpdate?: CompositionEventHandler; + + // Focus Events + onFocus?: FocusEventHandler; + onBlur?: FocusEventHandler; + + // Form Events + onChange?: FormEventHandler; + onInput?: FormEventHandler; + onSubmit?: FormEventHandler; + + // Image Events + onLoad?: ReactEventHandler; + onError?: ReactEventHandler; // also a Media Event + + // Keyboard Events + onKeyDown?: KeyboardEventHandler; + onKeyPress?: KeyboardEventHandler; + onKeyUp?: KeyboardEventHandler; + + // Media Events + onAbort?: ReactEventHandler; + onCanPlay?: ReactEventHandler; + onCanPlayThrough?: ReactEventHandler; + onDurationChange?: ReactEventHandler; + onEmptied?: ReactEventHandler; + onEncrypted?: ReactEventHandler; + onEnded?: ReactEventHandler; + onLoadedData?: ReactEventHandler; + onLoadedMetadata?: ReactEventHandler; + onLoadStart?: ReactEventHandler; + onPause?: ReactEventHandler; + onPlay?: ReactEventHandler; + onPlaying?: ReactEventHandler; + onProgress?: ReactEventHandler; + onRateChange?: ReactEventHandler; + onSeeked?: ReactEventHandler; + onSeeking?: ReactEventHandler; + onStalled?: ReactEventHandler; + onSuspend?: ReactEventHandler; + onTimeUpdate?: ReactEventHandler; + onVolumeChange?: ReactEventHandler; + onWaiting?: ReactEventHandler; + + // MouseEvents + onClick?: MouseEventHandler; + onContextMenu?: MouseEventHandler; + onDoubleClick?: MouseEventHandler; + onDrag?: DragEventHandler; + onDragEnd?: DragEventHandler; + onDragEnter?: DragEventHandler; + onDragExit?: DragEventHandler; + onDragLeave?: DragEventHandler; + onDragOver?: DragEventHandler; + onDragStart?: DragEventHandler; + onDrop?: DragEventHandler; + onMouseDown?: MouseEventHandler; + onMouseEnter?: MouseEventHandler; + onMouseLeave?: MouseEventHandler; + onMouseMove?: MouseEventHandler; + onMouseOut?: MouseEventHandler; + onMouseOver?: MouseEventHandler; + onMouseUp?: MouseEventHandler; + + // Selection Events + onSelect?: ReactEventHandler; + + // Touch Events + onTouchCancel?: TouchEventHandler; + onTouchEnd?: TouchEventHandler; + onTouchMove?: TouchEventHandler; + onTouchStart?: TouchEventHandler; + + // UI Events + onScroll?: UIEventHandler; + + // Wheel Events + onWheel?: WheelEventHandler; + } + + // This interface is not complete. Only properties accepting + // unitless numbers are listed here (see CSSProperty.js in React) + interface CSSProperties { + boxFlex?: number; + boxFlexGroup?: number; + columnCount?: number; + flex?: number | string; + flexGrow?: number; + flexShrink?: number; + fontWeight?: number | string; + lineClamp?: number; + lineHeight?: number | string; + opacity?: number; + order?: number; + orphans?: number; + widows?: number; + zIndex?: number; + zoom?: number; + + fontSize?: number | string; + + // SVG-related properties + fillOpacity?: number; + strokeOpacity?: number; + strokeWidth?: number; + + // Remaining properties auto-extracted from http://docs.webplatform.org. + // License: http://docs.webplatform.org/wiki/Template:CC-by-3.0 + /** + * Aligns a flex container's lines within the flex container when there is extra space in the cross-axis, similar to how justify-content aligns individual items within the main-axis. + */ + alignContent?: any; + + /** + * Sets the default alignment in the cross axis for all of the flex container's items, including anonymous flex items, similarly to how justify-content aligns items along the main axis. + */ + alignItems?: any; + + /** + * Allows the default alignment to be overridden for individual flex items. + */ + alignSelf?: any; + + /** + * This property allows precise alignment of elements, such as graphics, that do not have a baseline-table or lack the desired baseline in their baseline-table. With the alignment-adjust property, the position of the baseline identified by the alignment-baseline can be explicitly determined. It also determines precisely the alignment point for each glyph within a textual element. + */ + alignmentAdjust?: any; + + alignmentBaseline?: any; + + /** + * Defines a length of time to elapse before an animation starts, allowing an animation to begin execution some time after it is applied. + */ + animationDelay?: any; + + /** + * Defines whether an animation should run in reverse on some or all cycles. + */ + animationDirection?: any; + + /** + * Specifies how many times an animation cycle should play. + */ + animationIterationCount?: any; + + /** + * Defines the list of animations that apply to the element. + */ + animationName?: any; + + /** + * Defines whether an animation is running or paused. + */ + animationPlayState?: any; + + /** + * Allows changing the style of any element to platform-based interface elements or vice versa. + */ + appearance?: any; + + /** + * Determines whether or not the “back” side of a transformed element is visible when facing the viewer. + */ + backfaceVisibility?: any; + + /** + * This property describes how the element's background images should blend with each other and the element's background color. + * The value is a list of blend modes that corresponds to each background image. Each element in the list will apply to the corresponding element of background-image. If a property doesn’t have enough comma-separated values to match the number of layers, the UA must calculate its used value by repeating the list of values until there are enough. + */ + backgroundBlendMode?: any; + + backgroundColor?: any; + + backgroundComposite?: any; + + /** + * Applies one or more background images to an element. These can be any valid CSS image, including url() paths to image files or CSS gradients. + */ + backgroundImage?: any; + + /** + * Specifies what the background-position property is relative to. + */ + backgroundOrigin?: any; + + /** + * Sets the horizontal position of a background image. + */ + backgroundPositionX?: any; + + /** + * Background-repeat defines if and how background images will be repeated after they have been sized and positioned + */ + backgroundRepeat?: any; + + /** + * Obsolete - spec retired, not implemented. + */ + baselineShift?: any; + + /** + * Non standard. Sets or retrieves the location of the Dynamic HTML (DHTML) behavior. + */ + behavior?: any; + + /** + * Shorthand property that defines the different properties of all four sides of an element's border in a single declaration. It can be used to set border-width, border-style and border-color, or a subset of these. + */ + border?: any; + + /** + * Defines the shape of the border of the bottom-left corner. + */ + borderBottomLeftRadius?: any; + + /** + * Defines the shape of the border of the bottom-right corner. + */ + borderBottomRightRadius?: any; + + /** + * Sets the width of an element's bottom border. To set all four borders, use the border-width shorthand property which sets the values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. + */ + borderBottomWidth?: any; + + /** + * Border-collapse can be used for collapsing the borders between table cells + */ + borderCollapse?: any; + + /** + * The CSS border-color property sets the color of an element's four borders. This property can have from one to four values, made up of the elementary properties: • border-top-color + * • border-right-color + * • border-bottom-color + * • border-left-color The default color is the currentColor of each of these values. + * If you provide one value, it sets the color for the element. Two values set the horizontal and vertical values, respectively. Providing three values sets the top, vertical, and bottom values, in that order. Four values set all for sides: top, right, bottom, and left, in that order. + */ + borderColor?: any; + + /** + * Specifies different corner clipping effects, such as scoop (inner curves), bevel (straight cuts) or notch (cut-off rectangles). Works along with border-radius to specify the size of each corner effect. + */ + borderCornerShape?: any; + + /** + * The property border-image-source is used to set the image to be used instead of the border style. If this is set to none the border-style is used instead. + */ + borderImageSource?: any; + + /** + * The border-image-width CSS property defines the offset to use for dividing the border image in nine parts, the top-left corner, central top edge, top-right-corner, central right edge, bottom-right corner, central bottom edge, bottom-left corner, and central right edge. They represent inward distance from the top, right, bottom, and left edges. + */ + borderImageWidth?: any; + + /** + * Shorthand property that defines the border-width, border-style and border-color of an element's left border in a single declaration. Note that you can use the corresponding longhand properties to set specific individual properties of the left border — border-left-width, border-left-style and border-left-color. + */ + borderLeft?: any; + + /** + * The CSS border-left-color property sets the color of an element's left border. This page explains the border-left-color value, but often you will find it more convenient to fix the border's left color as part of a shorthand set, either border-left or border-color. + * Colors can be defined several ways. For more information, see Usage. + */ + borderLeftColor?: any; + + /** + * Sets the style of an element's left border. To set all four borders, use the shorthand property, border-style. Otherwise, you can set the borders individually with border-top-style, border-right-style, border-bottom-style, border-left-style. + */ + borderLeftStyle?: any; + + /** + * Sets the width of an element's left border. To set all four borders, use the border-width shorthand property which sets the values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. + */ + borderLeftWidth?: any; + + /** + * Shorthand property that defines the border-width, border-style and border-color of an element's right border in a single declaration. Note that you can use the corresponding longhand properties to set specific individual properties of the right border — border-right-width, border-right-style and border-right-color. + */ + borderRight?: any; + + /** + * Sets the color of an element's right border. This page explains the border-right-color value, but often you will find it more convenient to fix the border's right color as part of a shorthand set, either border-right or border-color. + * Colors can be defined several ways. For more information, see Usage. + */ + borderRightColor?: any; + + /** + * Sets the style of an element's right border. To set all four borders, use the shorthand property, border-style. Otherwise, you can set the borders individually with border-top-style, border-right-style, border-bottom-style, border-left-style. + */ + borderRightStyle?: any; + + /** + * Sets the width of an element's right border. To set all four borders, use the border-width shorthand property which sets the values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. + */ + borderRightWidth?: any; + + /** + * Specifies the distance between the borders of adjacent cells. + */ + borderSpacing?: any; + + /** + * Sets the style of an element's four borders. This property can have from one to four values. With only one value, the value will be applied to all four borders; otherwise, this works as a shorthand property for each of border-top-style, border-right-style, border-bottom-style, border-left-style, where each border style may be assigned a separate value. + */ + borderStyle?: any; + + /** + * Shorthand property that defines the border-width, border-style and border-color of an element's top border in a single declaration. Note that you can use the corresponding longhand properties to set specific individual properties of the top border — border-top-width, border-top-style and border-top-color. + */ + borderTop?: any; + + /** + * Sets the color of an element's top border. This page explains the border-top-color value, but often you will find it more convenient to fix the border's top color as part of a shorthand set, either border-top or border-color. + * Colors can be defined several ways. For more information, see Usage. + */ + borderTopColor?: any; + + /** + * Sets the rounding of the top-left corner of the element. + */ + borderTopLeftRadius?: any; + + /** + * Sets the rounding of the top-right corner of the element. + */ + borderTopRightRadius?: any; + + /** + * Sets the style of an element's top border. To set all four borders, use the shorthand property, border-style. Otherwise, you can set the borders individually with border-top-style, border-right-style, border-bottom-style, border-left-style. + */ + borderTopStyle?: any; + + /** + * Sets the width of an element's top border. To set all four borders, use the border-width shorthand property which sets the values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. + */ + borderTopWidth?: any; + + /** + * Sets the width of an element's four borders. This property can have from one to four values. This is a shorthand property for setting values simultaneously for border-top-width, border-right-width, border-bottom-width, and border-left-width. + */ + borderWidth?: any; + + /** + * This property specifies how far an absolutely positioned box's bottom margin edge is offset above the bottom edge of the box's containing block. For relatively positioned boxes, the offset is with respect to the bottom edges of the box itself (i.e., the box is given a position in the normal flow, then offset from that position according to these properties). + */ + bottom?: any; + + /** + * Obsolete. + */ + boxAlign?: any; + + /** + * Breaks a box into fragments creating new borders, padding and repeating backgrounds or lets it stay as a continuous box on a page break, column break, or, for inline elements, at a line break. + */ + boxDecorationBreak?: any; + + /** + * Deprecated + */ + boxDirection?: any; + + /** + * Do not use. This property has been replaced by the flex-wrap property. + * Gets or sets a value that specifies the direction to add successive rows or columns when the value of box-lines is set to multiple. + */ + boxLineProgression?: any; + + /** + * Do not use. This property has been replaced by the flex-wrap property. + * Gets or sets a value that specifies whether child elements wrap onto multiple lines or columns based on the space available in the object. + */ + boxLines?: any; + + /** + * Do not use. This property has been replaced by flex-order. + * Specifies the ordinal group that a child element of the object belongs to. This ordinal value identifies the display order (along the axis defined by the box-orient property) for the group. + */ + boxOrdinalGroup?: any; + + /** + * The CSS break-after property allows you to force a break on multi-column layouts. More specifically, it allows you to force a break after an element. It allows you to determine if a break should occur, and what type of break it should be. The break-after CSS property describes how the page, column or region break behaves after the generated box. If there is no generated box, the property is ignored. + */ + breakAfter?: any; + + /** + * Control page/column/region breaks that fall above a block of content + */ + breakBefore?: any; + + /** + * Control page/column/region breaks that fall within a block of content + */ + breakInside?: any; + + /** + * The clear CSS property specifies if an element can be positioned next to or must be positioned below the floating elements that precede it in the markup. + */ + clear?: any; + + /** + * Deprecated; see clip-path. + * Lets you specify the dimensions of an absolutely positioned element that should be visible, and the element is clipped into this shape, and displayed. + */ + clip?: any; + + /** + * Clipping crops an graphic, so that only a portion of the graphic is rendered, or filled. This clip-rule property, when used with the clip-path property, defines which clip rule, or algorithm, to use when filling the different parts of a graphics. + */ + clipRule?: any; + + /** + * The color property sets the color of an element's foreground content (usually text), accepting any standard CSS color from keywords and hex values to RGB(a) and HSL(a). + */ + color?: any; + + /** + * Specifies how to fill columns (balanced or sequential). + */ + columnFill?: any; + + /** + * The column-gap property controls the width of the gap between columns in multi-column elements. + */ + columnGap?: any; + + /** + * Sets the width, style, and color of the rule between columns. + */ + columnRule?: any; + + /** + * Specifies the color of the rule between columns. + */ + columnRuleColor?: any; + + /** + * Specifies the width of the rule between columns. + */ + columnRuleWidth?: any; + + /** + * The column-span CSS property makes it possible for an element to span across all columns when its value is set to all. An element that spans more than one column is called a spanning element. + */ + columnSpan?: any; + + /** + * Specifies the width of columns in multi-column elements. + */ + columnWidth?: any; + + /** + * This property is a shorthand property for setting column-width and/or column-count. + */ + columns?: any; + + /** + * The counter-increment property accepts one or more names of counters (identifiers), each one optionally followed by an integer which specifies the value by which the counter should be incremented (e.g. if the value is 2, the counter increases by 2 each time it is invoked). + */ + counterIncrement?: any; + + /** + * The counter-reset property contains a list of one or more names of counters, each one optionally followed by an integer (otherwise, the integer defaults to 0.) Each time the given element is invoked, the counters specified by the property are set to the given integer. + */ + counterReset?: any; + + /** + * The cue property specifies sound files (known as an "auditory icon") to be played by speech media agents before and after presenting an element's content; if only one file is specified, it is played both before and after. The volume at which the file(s) should be played, relative to the volume of the main element, may also be specified. The icon files may also be set separately with the cue-before and cue-after properties. + */ + cue?: any; + + /** + * The cue-after property specifies a sound file (known as an "auditory icon") to be played by speech media agents after presenting an element's content; the volume at which the file should be played may also be specified. The shorthand property cue sets cue sounds for both before and after the element is presented. + */ + cueAfter?: any; + + /** + * The direction CSS property specifies the text direction/writing direction. The rtl is used for Hebrew or Arabic text, the ltr is for other languages. + */ + direction?: any; + + /** + * This property specifies the type of rendering box used for an element. It is a shorthand property for many other display properties. + */ + display?: any; + + /** + * The ‘fill’ property paints the interior of the given graphical element. The area to be painted consists of any areas inside the outline of the shape. To determine the inside of the shape, all subpaths are considered, and the interior is determined according to the rules associated with the current value of the ‘fill-rule’ property. The zero-width geometric outline of a shape is included in the area to be painted. + */ + fill?: any; + + /** + * The ‘fill-rule’ property indicates the algorithm which is to be used to determine what parts of the canvas are included inside the shape. For a simple, non-intersecting path, it is intuitively clear what region lies "inside"; however, for a more complex path, such as a path that intersects itself or where one subpath encloses another, the interpretation of "inside" is not so obvious. + * The ‘fill-rule’ property provides two options for how the inside of a shape is determined: + */ + fillRule?: any; + + /** + * Applies various image processing effects. This property is largely unsupported. See Compatibility section for more information. + */ + filter?: any; + + /** + * Obsolete, do not use. This property has been renamed to align-items. + * Specifies the alignment (perpendicular to the layout axis defined by the flex-direction property) of child elements of the object. + */ + flexAlign?: any; + + /** + * The flex-basis CSS property describes the initial main size of the flex item before any free space is distributed according to the flex factors described in the flex property (flex-grow and flex-shrink). + */ + flexBasis?: any; + + /** + * The flex-direction CSS property describes how flex items are placed in the flex container, by setting the direction of the flex container's main axis. + */ + flexDirection?: any; + + /** + * The flex-flow CSS property defines the flex container's main and cross axis. It is a shorthand property for the flex-direction and flex-wrap properties. + */ + flexFlow?: any; + + /** + * Do not use. This property has been renamed to align-self + * Specifies the alignment (perpendicular to the layout axis defined by flex-direction) of child elements of the object. + */ + flexItemAlign?: any; + + /** + * Do not use. This property has been renamed to align-content. + * Specifies how a flexbox's lines align within the flexbox when there is extra space along the axis that is perpendicular to the axis defined by the flex-direction property. + */ + flexLinePack?: any; + + /** + * Gets or sets a value that specifies the ordinal group that a flexbox element belongs to. This ordinal value identifies the display order for the group. + */ + flexOrder?: any; + + /** + * Elements which have the style float are floated horizontally. These elements can move as far to the left or right of the containing element. All elements after the floating element will flow around it, but elements before the floating element are not impacted. If several floating elements are placed after each other, they will float next to each other as long as there is room. + */ + float?: any; + + /** + * Flows content from a named flow (specified by a corresponding flow-into) through selected elements to form a dynamic chain of layout regions. + */ + flowFrom?: any; + + /** + * The font property is shorthand that allows you to do one of two things: you can either set up six of the most mature font properties in one line, or you can set one of a choice of keywords to adopt a system font setting. + */ + font?: any; + + /** + * The font-family property allows one or more font family names and/or generic family names to be specified for usage on the selected element(s)' text. The browser then goes through the list; for each character in the selection it applies the first font family that has an available glyph for that character. + */ + fontFamily?: any; + + /** + * The font-kerning property allows contextual adjustment of inter-glyph spacing, i.e. the spaces between the characters in text. This property controls metric kerning - that utilizes adjustment data contained in the font. Optical Kerning is not supported as yet. + */ + fontKerning?: any; + + /** + * The font-size-adjust property adjusts the font-size of the fallback fonts defined with font-family, so that the x-height is the same no matter what font is used. This preserves the readability of the text when fallback happens. + */ + fontSizeAdjust?: any; + + /** + * Allows you to expand or condense the widths for a normal, condensed, or expanded font face. + */ + fontStretch?: any; + + /** + * The font-style property allows normal, italic, or oblique faces to be selected. Italic forms are generally cursive in nature while oblique faces are typically sloped versions of the regular face. Oblique faces can be simulated by artificially sloping the glyphs of the regular face. + */ + fontStyle?: any; + + /** + * This value specifies whether the user agent is allowed to synthesize bold or oblique font faces when a font family lacks bold or italic faces. + */ + fontSynthesis?: any; + + /** + * The font-variant property enables you to select the small-caps font within a font family. + */ + fontVariant?: any; + + /** + * Fonts can provide alternate glyphs in addition to default glyph for a character. This property provides control over the selection of these alternate glyphs. + */ + fontVariantAlternates?: any; + + /** + * Lays out one or more grid items bound by 4 grid lines. Shorthand for setting grid-column-start, grid-column-end, grid-row-start, and grid-row-end in a single declaration. + */ + gridArea?: any; + + /** + * Controls a grid item's placement in a grid area, particularly grid position and a grid span. Shorthand for setting grid-column-start and grid-column-end in a single declaration. + */ + gridColumn?: any; + + /** + * Controls a grid item's placement in a grid area as well as grid position and a grid span. The grid-column-end property (with grid-row-start, grid-row-end, and grid-column-start) determines a grid item's placement by specifying the grid lines of a grid item's grid area. + */ + gridColumnEnd?: any; + + /** + * Determines a grid item's placement by specifying the starting grid lines of a grid item's grid area . A grid item's placement in a grid area consists of a grid position and a grid span. See also ( grid-row-start, grid-row-end, and grid-column-end) + */ + gridColumnStart?: any; + + /** + * Gets or sets a value that indicates which row an element within a Grid should appear in. Shorthand for setting grid-row-start and grid-row-end in a single declaration. + */ + gridRow?: any; + + /** + * Determines a grid item’s placement by specifying the block-end. A grid item's placement in a grid area consists of a grid position and a grid span. The grid-row-end property (with grid-row-start, grid-column-start, and grid-column-end) determines a grid item's placement by specifying the grid lines of a grid item's grid area. + */ + gridRowEnd?: any; + + /** + * Specifies a row position based upon an integer location, string value, or desired row size. + * css/properties/grid-row is used as short-hand for grid-row-position and grid-row-position + */ + gridRowPosition?: any; + + gridRowSpan?: any; + + /** + * Specifies named grid areas which are not associated with any particular grid item, but can be referenced from the grid-placement properties. The syntax of the grid-template-areas property also provides a visualization of the structure of the grid, making the overall layout of the grid container easier to understand. + */ + gridTemplateAreas?: any; + + /** + * Specifies (with grid-template-rows) the line names and track sizing functions of the grid. Each sizing function can be specified as a length, a percentage of the grid container’s size, a measurement of the contents occupying the column or row, or a fraction of the free space in the grid. + */ + gridTemplateColumns?: any; + + /** + * Specifies (with grid-template-columns) the line names and track sizing functions of the grid. Each sizing function can be specified as a length, a percentage of the grid container’s size, a measurement of the contents occupying the column or row, or a fraction of the free space in the grid. + */ + gridTemplateRows?: any; + + /** + * Sets the height of an element. The content area of the element height does not include the padding, border, and margin of the element. + */ + height?: any; + + /** + * Specifies the minimum number of characters in a hyphenated word + */ + hyphenateLimitChars?: any; + + /** + * Indicates the maximum number of successive hyphenated lines in an element. The ‘no-limit’ value means that there is no limit. + */ + hyphenateLimitLines?: any; + + /** + * Specifies the maximum amount of trailing whitespace (before justification) that may be left in a line before hyphenation is triggered to pull part of a word from the next line back up into the current one. + */ + hyphenateLimitZone?: any; + + /** + * Specifies whether or not words in a sentence can be split by the use of a manual or automatic hyphenation mechanism. + */ + hyphens?: any; + + imeMode?: any; + + layoutGrid?: any; + + layoutGridChar?: any; + + layoutGridLine?: any; + + layoutGridMode?: any; + + layoutGridType?: any; + + /** + * Sets the left edge of an element + */ + left?: any; + + /** + * The letter-spacing CSS property specifies the spacing behavior between text characters. + */ + letterSpacing?: any; + + /** + * Deprecated. Gets or sets line-breaking rules for text in selected languages such as Japanese, Chinese, and Korean. + */ + lineBreak?: any; + + /** + * Shorthand property that sets the list-style-type, list-style-position and list-style-image properties in one declaration. + */ + listStyle?: any; + + /** + * This property sets the image that will be used as the list item marker. When the image is available, it will replace the marker set with the 'list-style-type' marker. That also means that if the image is not available, it will show the style specified by list-style-property + */ + listStyleImage?: any; + + /** + * Specifies if the list-item markers should appear inside or outside the content flow. + */ + listStylePosition?: any; + + /** + * Specifies the type of list-item marker in a list. + */ + listStyleType?: any; + + /** + * The margin property is shorthand to allow you to set all four margins of an element at once. Its equivalent longhand properties are margin-top, margin-right, margin-bottom and margin-left. Negative values are also allowed. + */ + margin?: any; + + /** + * margin-bottom sets the bottom margin of an element. + */ + marginBottom?: any; + + /** + * margin-left sets the left margin of an element. + */ + marginLeft?: any; + + /** + * margin-right sets the right margin of an element. + */ + marginRight?: any; + + /** + * margin-top sets the top margin of an element. + */ + marginTop?: any; + + /** + * The marquee-direction determines the initial direction in which the marquee content moves. + */ + marqueeDirection?: any; + + /** + * The 'marquee-style' property determines a marquee's scrolling behavior. + */ + marqueeStyle?: any; + + /** + * This property is shorthand for setting mask-image, mask-mode, mask-repeat, mask-position, mask-clip, mask-origin, mask-composite and mask-size. Omitted values are set to their original properties' initial values. + */ + mask?: any; + + /** + * This property is shorthand for setting mask-border-source, mask-border-slice, mask-border-width, mask-border-outset, and mask-border-repeat. Omitted values are set to their original properties' initial values. + */ + maskBorder?: any; + + /** + * This property specifies how the images for the sides and the middle part of the mask image are scaled and tiled. The first keyword applies to the horizontal sides, the second one applies to the vertical ones. If the second keyword is absent, it is assumed to be the same as the first, similar to the CSS border-image-repeat property. + */ + maskBorderRepeat?: any; + + /** + * This property specifies inward offsets from the top, right, bottom, and left edges of the mask image, dividing it into nine regions: four corners, four edges, and a middle. The middle image part is discarded and treated as fully transparent black unless the fill keyword is present. The four values set the top, right, bottom and left offsets in that order, similar to the CSS border-image-slice property. + */ + maskBorderSlice?: any; + + /** + * Specifies an image to be used as a mask. An image that is empty, fails to download, is non-existent, or cannot be displayed is ignored and does not mask the element. + */ + maskBorderSource?: any; + + /** + * This property sets the width of the mask box image, similar to the CSS border-image-width property. + */ + maskBorderWidth?: any; + + /** + * Determines the mask painting area, which defines the area that is affected by the mask. The painted content of an element may be restricted to this area. + */ + maskClip?: any; + + /** + * For elements rendered as a single box, specifies the mask positioning area. For elements rendered as multiple boxes (e.g., inline boxes on several lines, boxes on several pages) specifies which boxes box-decoration-break operates on to determine the mask positioning area(s). + */ + maskOrigin?: any; + + /** + * This property must not be used. It is no longer included in any standard or standard track specification, nor is it implemented in any browser. It is only used when the text-align-last property is set to size. It controls allowed adjustments of font-size to fit line content. + */ + maxFontSize?: any; + + /** + * Sets the maximum height for an element. It prevents the height of the element to exceed the specified value. If min-height is specified and is greater than max-height, max-height is overridden. + */ + maxHeight?: any; + + /** + * Sets the maximum width for an element. It limits the width property to be larger than the value specified in max-width. + */ + maxWidth?: any; + + /** + * Sets the minimum height for an element. It prevents the height of the element to be smaller than the specified value. The value of min-height overrides both max-height and height. + */ + minHeight?: any; + + /** + * Sets the minimum width of an element. It limits the width property to be not smaller than the value specified in min-width. + */ + minWidth?: any; + + /** + * The CSS outline property is a shorthand property for setting one or more of the individual outline properties outline-style, outline-width and outline-color in a single rule. In most cases the use of this shortcut is preferable and more convenient. + * Outlines differ from borders in the following ways: • Outlines do not take up space, they are drawn above the content. + * • Outlines may be non-rectangular. They are rectangular in Gecko/Firefox. Internet Explorer attempts to place the smallest contiguous outline around all elements or shapes that are indicated to have an outline. Opera draws a non-rectangular shape around a construct. + */ + outline?: any; + + /** + * The outline-color property sets the color of the outline of an element. An outline is a line that is drawn around elements, outside the border edge, to make the element stand out. + */ + outlineColor?: any; + + /** + * The outline-offset property offsets the outline and draw it beyond the border edge. + */ + outlineOffset?: any; + + /** + * The overflow property controls how extra content exceeding the bounding box of an element is rendered. It can be used in conjunction with an element that has a fixed width and height, to eliminate text-induced page distortion. + */ + overflow?: any; + + /** + * Specifies the preferred scrolling methods for elements that overflow. + */ + overflowStyle?: any; + + /** + * The overflow-x property is a specific case of the generic overflow property. It controls how extra content exceeding the x-axis of the bounding box of an element is rendered. + */ + overflowX?: any; + + /** + * The padding optional CSS property sets the required padding space on one to four sides of an element. The padding area is the space between an element and its border. Negative values are not allowed but decimal values are permitted. The element size is treated as fixed, and the content of the element shifts toward the center as padding is increased. + * The padding property is a shorthand to avoid setting each side separately (padding-top, padding-right, padding-bottom, padding-left). + */ + padding?: any; + + /** + * The padding-bottom CSS property of an element sets the padding space required on the bottom of an element. The padding area is the space between the content of the element and its border. Contrary to margin-bottom values, negative values of padding-bottom are invalid. + */ + paddingBottom?: any; + + /** + * The padding-left CSS property of an element sets the padding space required on the left side of an element. The padding area is the space between the content of the element and its border. Contrary to margin-left values, negative values of padding-left are invalid. + */ + paddingLeft?: any; + + /** + * The padding-right CSS property of an element sets the padding space required on the right side of an element. The padding area is the space between the content of the element and its border. Contrary to margin-right values, negative values of padding-right are invalid. + */ + paddingRight?: any; + + /** + * The padding-top CSS property of an element sets the padding space required on the top of an element. The padding area is the space between the content of the element and its border. Contrary to margin-top values, negative values of padding-top are invalid. + */ + paddingTop?: any; + + /** + * The page-break-after property is supported in all major browsers. With CSS3, page-break-* properties are only aliases of the break-* properties. The CSS3 Fragmentation spec defines breaks for all CSS box fragmentation. + */ + pageBreakAfter?: any; + + /** + * The page-break-before property sets the page-breaking behavior before an element. With CSS3, page-break-* properties are only aliases of the break-* properties. The CSS3 Fragmentation spec defines breaks for all CSS box fragmentation. + */ + pageBreakBefore?: any; + + /** + * Sets the page-breaking behavior inside an element. With CSS3, page-break-* properties are only aliases of the break-* properties. The CSS3 Fragmentation spec defines breaks for all CSS box fragmentation. + */ + pageBreakInside?: any; + + /** + * The pause property determines how long a speech media agent should pause before and after presenting an element. It is a shorthand for the pause-before and pause-after properties. + */ + pause?: any; + + /** + * The pause-after property determines how long a speech media agent should pause after presenting an element. It may be replaced by the shorthand property pause, which sets pause time before and after. + */ + pauseAfter?: any; + + /** + * The pause-before property determines how long a speech media agent should pause before presenting an element. It may be replaced by the shorthand property pause, which sets pause time before and after. + */ + pauseBefore?: any; + + /** + * The perspective property defines how far an element is placed from the view on the z-axis, from the screen to the viewer. + * Perspective defines how an object is viewed. In graphic arts, perspective is the representation on a flat surface of what the viewer's eye would see in a 3D space. (See Wikipedia for more information about graphical perspective and for related illustrations.) + * The illusion of perspective on a flat surface, such as a computer screen, is created by projecting points on the flat surface as they would appear if the flat surface were a window through which the viewer was looking at the object. In discussion of virtual environments, this flat surface is called a projection plane. + */ + perspective?: any; + + /** + * The perspective-origin property establishes the origin for the perspective property. It effectively sets the X and Y position at which the viewer appears to be looking at the children of the element. + * When used with perspective, perspective-origin changes the appearance of an object, as if a viewer were looking at it from a different origin. An object appears differently if a viewer is looking directly at it versus looking at it from below, above, or from the side. Thus, the perspective-origin is like a vanishing point. + * The default value of perspective-origin is 50% 50%. This displays an object as if the viewer's eye were positioned directly at the center of the screen, both top-to-bottom and left-to-right. A value of 0% 0% changes the object as if the viewer was looking toward the top left angle. A value of 100% 100% changes the appearance as if viewed toward the bottom right angle. + */ + perspectiveOrigin?: any; + + /** + * The pointer-events property allows you to control whether an element can be the target for the pointing device (e.g, mouse, pen) events. + */ + pointerEvents?: any; + + /** + * The position property controls the type of positioning used by an element within its parent elements. The effect of the position property depends on a lot of factors, for example the position property of parent elements. + */ + position?: any; + + /** + * Obsolete: unsupported. + * This property determines whether or not a full-width punctuation mark character should be trimmed if it appears at the beginning of a line, so that its "ink" lines up with the first glyph in the line above and below. + */ + punctuationTrim?: any; + + /** + * Sets the type of quotation marks for embedded quotations. + */ + quotes?: any; + + /** + * Controls whether the last region in a chain displays additional 'overset' content according its default overflow property, or if it displays a fragment of content as if it were flowing into a subsequent region. + */ + regionFragment?: any; + + /** + * The rest-after property determines how long a speech media agent should pause after presenting an element's main content, before presenting that element's exit cue sound. It may be replaced by the shorthand property rest, which sets rest time before and after. + */ + restAfter?: any; + + /** + * The rest-before property determines how long a speech media agent should pause after presenting an intro cue sound for an element, before presenting that element's main content. It may be replaced by the shorthand property rest, which sets rest time before and after. + */ + restBefore?: any; + + /** + * Specifies the position an element in relation to the right side of the containing element. + */ + right?: any; + + rubyAlign?: any; + + rubyPosition?: any; + + /** + * Defines the alpha channel threshold used to extract a shape from an image. Can be thought of as a "minimum opacity" threshold; that is, a value of 0.5 means that the shape will enclose all the pixels that are more than 50% opaque. + */ + shapeImageThreshold?: any; + + /** + * A future level of CSS Shapes will define a shape-inside property, which will define a shape to wrap content within the element. See Editor's Draft and CSSWG wiki page on next-level plans + */ + shapeInside?: any; + + /** + * Adds a margin to a shape-outside. In effect, defines a new shape that is the smallest contour around all the points that are the shape-margin distance outward perpendicular to each point on the underlying shape. For points where a perpendicular direction is not defined (e.g., a triangle corner), takes all points on a circle centered at the point and with a radius of the shape-margin distance. This property accepts only non-negative values. + */ + shapeMargin?: any; + + /** + * Declares a shape around which text should be wrapped, with possible modifications from the shape-margin property. The shape defined by shape-outside and shape-margin changes the geometry of a float element's float area. + */ + shapeOutside?: any; + + /** + * The speak property determines whether or not a speech synthesizer will read aloud the contents of an element. + */ + speak?: any; + + /** + * The speak-as property determines how the speech synthesizer interprets the content: words as whole words or as a sequence of letters, numbers as a numerical value or a sequence of digits, punctuation as pauses in speech or named punctuation characters. + */ + speakAs?: any; + + /** + * The tab-size CSS property is used to customise the width of a tab (U+0009) character. + */ + tabSize?: any; + + /** + * The 'table-layout' property controls the algorithm used to lay out the table cells, rows, and columns. + */ + tableLayout?: any; + + /** + * The text-align CSS property describes how inline content like text is aligned in its parent block element. text-align does not control the alignment of block elements itself, only their inline content. + */ + textAlign?: any; + + /** + * The text-align-last CSS property describes how the last line of a block element or a line before line break is aligned in its parent block element. + */ + textAlignLast?: any; + + /** + * The text-decoration CSS property is used to set the text formatting to underline, overline, line-through or blink. + * underline and overline decorations are positioned under the text, line-through over it. + */ + textDecoration?: any; + + /** + * Sets the color of any text decoration, such as underlines, overlines, and strike throughs. + */ + textDecorationColor?: any; + + /** + * Sets what kind of line decorations are added to an element, such as underlines, overlines, etc. + */ + textDecorationLine?: any; + + textDecorationLineThrough?: any; + + textDecorationNone?: any; + + textDecorationOverline?: any; + + /** + * Specifies what parts of an element’s content are skipped over when applying any text decoration. + */ + textDecorationSkip?: any; + + /** + * This property specifies the style of the text decoration line drawn on the specified element. The intended meaning for the values are the same as those of the border-style-properties. + */ + textDecorationStyle?: any; + + textDecorationUnderline?: any; + + /** + * The text-emphasis property will apply special emphasis marks to the elements text. Slightly similar to the text-decoration property only that this property can have affect on the line-height. It also is noted that this is shorthand for text-emphasis-style and for text-emphasis-color. + */ + textEmphasis?: any; + + /** + * The text-emphasis-color property specifies the foreground color of the emphasis marks. + */ + textEmphasisColor?: any; + + /** + * The text-emphasis-style property applies special emphasis marks to an element's text. + */ + textEmphasisStyle?: any; + + /** + * This property helps determine an inline box's block-progression dimension, derived from the text-height and font-size properties for non-replaced elements, the height or the width for replaced elements, and the stacked block-progression dimension for inline-block elements. The block-progression dimension determines the position of the padding, border and margin for the element. + */ + textHeight?: any; + + /** + * Specifies the amount of space horizontally that should be left on the first line of the text of an element. This horizontal spacing is at the beginning of the first line and is in respect to the left edge of the containing block box. + */ + textIndent?: any; + + textJustifyTrim?: any; + + textKashidaSpace?: any; + + /** + * The text-line-through property is a shorthand property for text-line-through-style, text-line-through-color and text-line-through-mode. (Considered obsolete; use text-decoration instead.) + */ + textLineThrough?: any; + + /** + * Specifies the line colors for the line-through text decoration. + * (Considered obsolete; use text-decoration-color instead.) + */ + textLineThroughColor?: any; + + /** + * Sets the mode for the line-through text decoration, determining whether the text decoration affects the space characters or not. + * (Considered obsolete; use text-decoration-skip instead.) + */ + textLineThroughMode?: any; + + /** + * Specifies the line style for line-through text decoration. + * (Considered obsolete; use text-decoration-style instead.) + */ + textLineThroughStyle?: any; + + /** + * Specifies the line width for the line-through text decoration. + */ + textLineThroughWidth?: any; + + /** + * The text-overflow shorthand CSS property determines how overflowed content that is not displayed is signaled to the users. It can be clipped, display an ellipsis ('…', U+2026 HORIZONTAL ELLIPSIS) or a Web author-defined string. It covers the two long-hand properties text-overflow-mode and text-overflow-ellipsis + */ + textOverflow?: any; + + /** + * The text-overline property is the shorthand for the text-overline-style, text-overline-width, text-overline-color, and text-overline-mode properties. + */ + textOverline?: any; + + /** + * Specifies the line color for the overline text decoration. + */ + textOverlineColor?: any; + + /** + * Sets the mode for the overline text decoration, determining whether the text decoration affects the space characters or not. + */ + textOverlineMode?: any; + + /** + * Specifies the line style for overline text decoration. + */ + textOverlineStyle?: any; + + /** + * Specifies the line width for the overline text decoration. + */ + textOverlineWidth?: any; + + /** + * The text-rendering CSS property provides information to the browser about how to optimize when rendering text. Options are: legibility, speed or geometric precision. + */ + textRendering?: any; + + /** + * Obsolete: unsupported. + */ + textScript?: any; + + /** + * The CSS text-shadow property applies one or more drop shadows to the text and of an element. Each shadow is specified as an offset from the text, along with optional color and blur radius values. + */ + textShadow?: any; + + /** + * This property transforms text for styling purposes. (It has no effect on the underlying content.) + */ + textTransform?: any; + + /** + * Unsupported. + * This property will add a underline position value to the element that has an underline defined. + */ + textUnderlinePosition?: any; + + /** + * After review this should be replaced by text-decoration should it not? + * This property will set the underline style for text with a line value for underline, overline, and line-through. + */ + textUnderlineStyle?: any; + + /** + * This property specifies how far an absolutely positioned box's top margin edge is offset below the top edge of the box's containing block. For relatively positioned boxes, the offset is with respect to the top edges of the box itself (i.e., the box is given a position in the normal flow, then offset from that position according to these properties). + */ + top?: any; + + /** + * Determines whether touch input may trigger default behavior supplied by the user agent, such as panning or zooming. + */ + touchAction?: any; + + /** + * CSS transforms allow elements styled with CSS to be transformed in two-dimensional or three-dimensional space. Using this property, elements can be translated, rotated, scaled, and skewed. The value list may consist of 2D and/or 3D transform values. + */ + transform?: any; + + /** + * This property defines the origin of the transformation axes relative to the element to which the transformation is applied. + */ + transformOrigin?: any; + + /** + * This property allows you to define the relative position of the origin of the transformation grid along the z-axis. + */ + transformOriginZ?: any; + + /** + * This property specifies how nested elements are rendered in 3D space relative to their parent. + */ + transformStyle?: any; + + /** + * The transition CSS property is a shorthand property for transition-property, transition-duration, transition-timing-function, and transition-delay. It allows to define the transition between two states of an element. + */ + transition?: any; + + /** + * Defines when the transition will start. A value of ‘0s’ means the transition will execute as soon as the property is changed. Otherwise, the value specifies an offset from the moment the property is changed, and the transition will delay execution by that offset. + */ + transitionDelay?: any; + + /** + * The 'transition-duration' property specifies the length of time a transition animation takes to complete. + */ + transitionDuration?: any; + + /** + * The 'transition-property' property specifies the name of the CSS property to which the transition is applied. + */ + transitionProperty?: any; + + /** + * Sets the pace of action within a transition + */ + transitionTimingFunction?: any; + + /** + * The unicode-bidi CSS property specifies the level of embedding with respect to the bidirectional algorithm. + */ + unicodeBidi?: any; + + /** + * unicode-range allows you to set a specific range of characters to be downloaded from a font (embedded using @font-face) and made available for use on the current page. + */ + unicodeRange?: any; + + /** + * This is for all the high level UX stuff. + */ + userFocus?: any; + + /** + * For inputing user content + */ + userInput?: any; + + /** + * The vertical-align property controls how inline elements or text are vertically aligned compared to the baseline. If this property is used on table-cells it controls the vertical alignment of content of the table cell. + */ + verticalAlign?: any; + + /** + * The visibility property specifies whether the boxes generated by an element are rendered. + */ + visibility?: any; + + /** + * The voice-balance property sets the apparent position (in stereo sound) of the synthesized voice for spoken media. + */ + voiceBalance?: any; + + /** + * The voice-duration property allows the author to explicitly set the amount of time it should take a speech synthesizer to read an element's content, for example to allow the speech to be synchronized with other media. With a value of auto (the default) the length of time it takes to read the content is determined by the content itself and the voice-rate property. + */ + voiceDuration?: any; + + /** + * The voice-family property sets the speaker's voice used by a speech media agent to read an element. The speaker may be specified as a named character (to match a voice option in the speech reading software) or as a generic description of the age and gender of the voice. Similar to the font-family property for visual media, a comma-separated list of fallback options may be given in case the speech reader does not recognize the character name or cannot synthesize the requested combination of generic properties. + */ + voiceFamily?: any; + + /** + * The voice-pitch property sets pitch or tone (high or low) for the synthesized speech when reading an element; the pitch may be specified absolutely or relative to the normal pitch for the voice-family used to read the text. + */ + voicePitch?: any; + + /** + * The voice-range property determines how much variation in pitch or tone will be created by the speech synthesize when reading an element. Emphasized text, grammatical structures and punctuation may all be rendered as changes in pitch, this property determines how strong or obvious those changes are; large ranges are associated with enthusiastic or emotional speech, while small ranges are associated with flat or mechanical speech. + */ + voiceRange?: any; + + /** + * The voice-rate property sets the speed at which the voice synthesized by a speech media agent will read content. + */ + voiceRate?: any; + + /** + * The voice-stress property sets the level of vocal emphasis to be used for synthesized speech reading the element. + */ + voiceStress?: any; + + /** + * The voice-volume property sets the volume for spoken content in speech media. It replaces the deprecated volume property. + */ + voiceVolume?: any; + + /** + * The white-space property controls whether and how white space inside the element is collapsed, and whether lines may wrap at unforced "soft wrap" opportunities. + */ + whiteSpace?: any; + + /** + * Obsolete: unsupported. + */ + whiteSpaceTreatment?: any; + + /** + * Specifies the width of the content area of an element. The content area of the element width does not include the padding, border, and margin of the element. + */ + width?: any; + + /** + * The word-break property is often used when there is long generated content that is strung together without and spaces or hyphens to beak apart. A common case of this is when there is a long URL that does not have any hyphens. This case could potentially cause the breaking of the layout as it could extend past the parent element. + */ + wordBreak?: any; + + /** + * The word-spacing CSS property specifies the spacing behavior between "words". + */ + wordSpacing?: any; + + /** + * An alias of css/properties/overflow-wrap, word-wrap defines whether to break words when the content exceeds the boundaries of its container. + */ + wordWrap?: any; + + /** + * Specifies how exclusions affect inline content within block-level elements. Elements lay out their inline content in their content area but wrap around exclusion areas. + */ + wrapFlow?: any; + + /** + * Set the value that is used to offset the inner wrap shape from other shapes. Inline content that intersects a shape with this property will be pushed by this shape's margin. + */ + wrapMargin?: any; + + /** + * Obsolete and unsupported. Do not use. + * This CSS property controls the text when it reaches the end of the block in which it is enclosed. + */ + wrapOption?: any; + + /** + * writing-mode specifies if lines of text are laid out horizontally or vertically, and the direction which lines of text and blocks progress. + */ + writingMode?: any; + + + [propertyName: string]: any; + } + + interface HTMLAttributes extends DOMAttributes { + // React-specific Attributes + defaultChecked?: boolean; + defaultValue?: string | string[]; + + // Standard HTML Attributes + accept?: string; + acceptCharset?: string; + accessKey?: string; + action?: string; + allowFullScreen?: boolean; + allowTransparency?: boolean; + alt?: string; + async?: boolean; + autoComplete?: string; + autoFocus?: boolean; + autoPlay?: boolean; + capture?: boolean; + cellPadding?: number | string; + cellSpacing?: number | string; + charSet?: string; + challenge?: string; + checked?: boolean; + classID?: string; + className?: string; + cols?: number; + colSpan?: number; + content?: string; + contentEditable?: boolean; + contextMenu?: string; + controls?: boolean; + coords?: string; + crossOrigin?: string; + data?: string; + dateTime?: string; + default?: boolean; + defer?: boolean; + dir?: string; + disabled?: boolean; + download?: any; + draggable?: boolean; + encType?: string; + form?: string; + formAction?: string; + formEncType?: string; + formMethod?: string; + formNoValidate?: boolean; + formTarget?: string; + frameBorder?: number | string; + headers?: string; + height?: number | string; + hidden?: boolean; + high?: number; + href?: string; + hrefLang?: string; + htmlFor?: string; + httpEquiv?: string; + icon?: string; + id?: string; + inputMode?: string; + integrity?: string; + is?: string; + keyParams?: string; + keyType?: string; + kind?: string; + label?: string; + lang?: string; + list?: string; + loop?: boolean; + low?: number; + manifest?: string; + marginHeight?: number; + marginWidth?: number; + max?: number | string; + maxLength?: number; + media?: string; + mediaGroup?: string; + method?: string; + min?: number | string; + minLength?: number; + multiple?: boolean; + muted?: boolean; + name?: string; + noValidate?: boolean; + open?: boolean; + optimum?: number; + pattern?: string; + placeholder?: string; + poster?: string; + preload?: string; + radioGroup?: string; + readOnly?: boolean; + rel?: string; + required?: boolean; + role?: string; + rows?: number; + rowSpan?: number; + sandbox?: string; + scope?: string; + scoped?: boolean; + scrolling?: string; + seamless?: boolean; + selected?: boolean; + shape?: string; + size?: number; + sizes?: string; + span?: number; + spellCheck?: boolean; + src?: string; + srcDoc?: string; + srcLang?: string; + srcSet?: string; + start?: number; + step?: number | string; + style?: CSSProperties; + summary?: string; + tabIndex?: number; + target?: string; + title?: string; + type?: string; + useMap?: string; + value?: string | string[]; + width?: number | string; + wmode?: string; + wrap?: string; + + // RDFa Attributes + about?: string; + datatype?: string; + inlist?: any; + prefix?: string; + property?: string; + resource?: string; + typeof?: string; + vocab?: string; + + // Non-standard Attributes + autoCapitalize?: string; + autoCorrect?: string; + autoSave?: string; + color?: string; + itemProp?: string; + itemScope?: boolean; + itemType?: string; + itemID?: string; + itemRef?: string; + results?: number; + security?: string; + unselectable?: boolean; + + // Allows aria- and data- Attributes + [key: string]: any; + } + + interface SVGAttributes extends HTMLAttributes { + clipPath?: string; + cx?: number | string; + cy?: number | string; + d?: string; + dx?: number | string; + dy?: number | string; + fill?: string; + fillOpacity?: number | string; + fontFamily?: string; + fontSize?: number | string; + fx?: number | string; + fy?: number | string; + gradientTransform?: string; + gradientUnits?: string; + markerEnd?: string; + markerMid?: string; + markerStart?: string; + offset?: number | string; + opacity?: number | string; + patternContentUnits?: string; + patternUnits?: string; + points?: string; + preserveAspectRatio?: string; + r?: number | string; + rx?: number | string; + ry?: number | string; + spreadMethod?: string; + stopColor?: string; + stopOpacity?: number | string; + stroke?: string; + strokeDasharray?: string; + strokeLinecap?: string; + strokeMiterlimit?: string; + strokeOpacity?: number | string; + strokeWidth?: number | string; + textAnchor?: string; + transform?: string; + version?: string; + viewBox?: string; + x1?: number | string; + x2?: number | string; + x?: number | string; + xlinkActuate?: string; + xlinkArcrole?: string; + xlinkHref?: string; + xlinkRole?: string; + xlinkShow?: string; + xlinkTitle?: string; + xlinkType?: string; + xmlBase?: string; + xmlLang?: string; + xmlSpace?: string; + y1?: number | string; + y2?: number | string; + y?: number | string; + } + + // + // React.DOM + // ---------------------------------------------------------------------- + + interface ReactDOM { + // HTML + a: HTMLFactory; + abbr: HTMLFactory; + address: HTMLFactory; + area: HTMLFactory; + article: HTMLFactory; + aside: HTMLFactory; + audio: HTMLFactory; + b: HTMLFactory; + base: HTMLFactory; + bdi: HTMLFactory; + bdo: HTMLFactory; + big: HTMLFactory; + blockquote: HTMLFactory; + body: HTMLFactory; + br: HTMLFactory; + button: HTMLFactory; + canvas: HTMLFactory; + caption: HTMLFactory; + cite: HTMLFactory; + code: HTMLFactory; + col: HTMLFactory; + colgroup: HTMLFactory; + data: HTMLFactory; + datalist: HTMLFactory; + dd: HTMLFactory; + del: HTMLFactory; + details: HTMLFactory; + dfn: HTMLFactory; + dialog: HTMLFactory; + div: HTMLFactory; + dl: HTMLFactory; + dt: HTMLFactory; + em: HTMLFactory; + embed: HTMLFactory; + fieldset: HTMLFactory; + figcaption: HTMLFactory; + figure: HTMLFactory; + footer: HTMLFactory; + form: HTMLFactory; + h1: HTMLFactory; + h2: HTMLFactory; + h3: HTMLFactory; + h4: HTMLFactory; + h5: HTMLFactory; + h6: HTMLFactory; + head: HTMLFactory; + header: HTMLFactory; + hgroup: HTMLFactory; + hr: HTMLFactory; + html: HTMLFactory; + i: HTMLFactory; + iframe: HTMLFactory; + img: HTMLFactory; + input: HTMLFactory; + ins: HTMLFactory; + kbd: HTMLFactory; + keygen: HTMLFactory; + label: HTMLFactory; + legend: HTMLFactory; + li: HTMLFactory; + link: HTMLFactory; + main: HTMLFactory; + map: HTMLFactory; + mark: HTMLFactory; + menu: HTMLFactory; + menuitem: HTMLFactory; + meta: HTMLFactory; + meter: HTMLFactory; + nav: HTMLFactory; + noscript: HTMLFactory; + object: HTMLFactory; + ol: HTMLFactory; + optgroup: HTMLFactory; + option: HTMLFactory; + output: HTMLFactory; + p: HTMLFactory; + param: HTMLFactory; + picture: HTMLFactory; + pre: HTMLFactory; + progress: HTMLFactory; + q: HTMLFactory; + rp: HTMLFactory; + rt: HTMLFactory; + ruby: HTMLFactory; + s: HTMLFactory; + samp: HTMLFactory; + script: HTMLFactory; + section: HTMLFactory; + select: HTMLFactory; + small: HTMLFactory; + source: HTMLFactory; + span: HTMLFactory; + strong: HTMLFactory; + style: HTMLFactory; + sub: HTMLFactory; + summary: HTMLFactory; + sup: HTMLFactory; + table: HTMLFactory; + tbody: HTMLFactory; + td: HTMLFactory; + textarea: HTMLFactory; + tfoot: HTMLFactory; + th: HTMLFactory; + thead: HTMLFactory; + time: HTMLFactory; + title: HTMLFactory; + tr: HTMLFactory; + track: HTMLFactory; + u: HTMLFactory; + ul: HTMLFactory; + "var": HTMLFactory; + video: HTMLFactory; + wbr: HTMLFactory; + + // SVG + svg: SVGFactory; + circle: SVGFactory; + defs: SVGFactory; + ellipse: SVGFactory; + g: SVGFactory; + image: SVGFactory; + line: SVGFactory; + linearGradient: SVGFactory; + mask: SVGFactory; + path: SVGFactory; + pattern: SVGFactory; + polygon: SVGFactory; + polyline: SVGFactory; + radialGradient: SVGFactory; + rect: SVGFactory; + stop: SVGFactory; + text: SVGFactory; + tspan: SVGFactory; + } + + // + // React.PropTypes + // ---------------------------------------------------------------------- + + interface Validator { + (object: T, key: string, componentName: string): Error; + } + + interface Requireable extends Validator { + isRequired: Validator; + } + + interface ValidationMap { + [key: string]: Validator; + } + + interface ReactPropTypes { + any: Requireable; + array: Requireable; + bool: Requireable; + func: Requireable; + number: Requireable; + object: Requireable; + string: Requireable; + node: Requireable; + element: Requireable; + instanceOf(expectedClass: {}): Requireable; + oneOf(types: any[]): Requireable; + oneOfType(types: Validator[]): Requireable; + arrayOf(type: Validator): Requireable; + objectOf(type: Validator): Requireable; + shape(type: ValidationMap): Requireable; + } + + // + // React.Children + // ---------------------------------------------------------------------- + + interface ReactChildren { + map(children: ReactNode, fn: (child: ReactChild, index: number) => T): T[]; + forEach(children: ReactNode, fn: (child: ReactChild, index: number) => any): void; + count(children: ReactNode): number; + only(children: ReactNode): ReactElement; + toArray(children: ReactNode): ReactChild[]; + } + + // + // Browser Interfaces + // https://github.com/nikeee/2048-typescript/blob/master/2048/js/touch.d.ts + // ---------------------------------------------------------------------- + + interface AbstractView { + styleMedia: StyleMedia; + document: Document; + } + + interface Touch { + identifier: number; + target: EventTarget; + screenX: number; + screenY: number; + clientX: number; + clientY: number; + pageX: number; + pageY: number; + } + + interface TouchList { + [index: number]: Touch; + length: number; + item(index: number): Touch; + identifiedTouch(identifier: number): Touch; + } +} + +declare module "react" { + export = __React; +} + +declare namespace JSX { + import React = __React; + + interface Element extends React.ReactElement { } + interface ElementClass extends React.Component { + render(): JSX.Element; + } + interface ElementAttributesProperty { props: {}; } + + interface IntrinsicAttributes { + key?: string | number; + } + + interface IntrinsicClassAttributes { + ref?: string | ((classInstance: T) => void); + } + + interface IntrinsicElements { + // HTML + a: React.HTMLProps; + abbr: React.HTMLProps; + address: React.HTMLProps; + area: React.HTMLProps; + article: React.HTMLProps; + aside: React.HTMLProps; + audio: React.HTMLProps; + b: React.HTMLProps; + base: React.HTMLProps; + bdi: React.HTMLProps; + bdo: React.HTMLProps; + big: React.HTMLProps; + blockquote: React.HTMLProps; + body: React.HTMLProps; + br: React.HTMLProps; + button: React.HTMLProps; + canvas: React.HTMLProps; + caption: React.HTMLProps; + cite: React.HTMLProps; + code: React.HTMLProps; + col: React.HTMLProps; + colgroup: React.HTMLProps; + data: React.HTMLProps; + datalist: React.HTMLProps; + dd: React.HTMLProps; + del: React.HTMLProps; + details: React.HTMLProps; + dfn: React.HTMLProps; + dialog: React.HTMLProps; + div: React.HTMLProps; + dl: React.HTMLProps; + dt: React.HTMLProps; + em: React.HTMLProps; + embed: React.HTMLProps; + fieldset: React.HTMLProps; + figcaption: React.HTMLProps; + figure: React.HTMLProps; + footer: React.HTMLProps; + form: React.HTMLProps; + h1: React.HTMLProps; + h2: React.HTMLProps; + h3: React.HTMLProps; + h4: React.HTMLProps; + h5: React.HTMLProps; + h6: React.HTMLProps; + head: React.HTMLProps; + header: React.HTMLProps; + hgroup: React.HTMLProps; + hr: React.HTMLProps; + html: React.HTMLProps; + i: React.HTMLProps; + iframe: React.HTMLProps; + img: React.HTMLProps; + input: React.HTMLProps; + ins: React.HTMLProps; + kbd: React.HTMLProps; + keygen: React.HTMLProps; + label: React.HTMLProps; + legend: React.HTMLProps; + li: React.HTMLProps; + link: React.HTMLProps; + main: React.HTMLProps; + map: React.HTMLProps; + mark: React.HTMLProps; + menu: React.HTMLProps; + menuitem: React.HTMLProps; + meta: React.HTMLProps; + meter: React.HTMLProps; + nav: React.HTMLProps; + noscript: React.HTMLProps; + object: React.HTMLProps; + ol: React.HTMLProps; + optgroup: React.HTMLProps; + option: React.HTMLProps; + output: React.HTMLProps; + p: React.HTMLProps; + param: React.HTMLProps; + picture: React.HTMLProps; + pre: React.HTMLProps; + progress: React.HTMLProps; + q: React.HTMLProps; + rp: React.HTMLProps; + rt: React.HTMLProps; + ruby: React.HTMLProps; + s: React.HTMLProps; + samp: React.HTMLProps; + script: React.HTMLProps; + section: React.HTMLProps; + select: React.HTMLProps; + small: React.HTMLProps; + source: React.HTMLProps; + span: React.HTMLProps; + strong: React.HTMLProps; + style: React.HTMLProps; + sub: React.HTMLProps; + summary: React.HTMLProps; + sup: React.HTMLProps; + table: React.HTMLProps; + tbody: React.HTMLProps; + td: React.HTMLProps; + textarea: React.HTMLProps; + tfoot: React.HTMLProps; + th: React.HTMLProps; + thead: React.HTMLProps; + time: React.HTMLProps; + title: React.HTMLProps; + tr: React.HTMLProps; + track: React.HTMLProps; + u: React.HTMLProps; + ul: React.HTMLProps; + "var": React.HTMLProps; + video: React.HTMLProps; + wbr: React.HTMLProps; + + // SVG + svg: React.SVGProps; + + circle: React.SVGProps; + clipPath: React.SVGProps; + defs: React.SVGProps; + ellipse: React.SVGProps; + g: React.SVGProps; + image: React.SVGProps; + line: React.SVGProps; + linearGradient: React.SVGProps; + mask: React.SVGProps; + path: React.SVGProps; + pattern: React.SVGProps; + polygon: React.SVGProps; + polyline: React.SVGProps; + radialGradient: React.SVGProps; + rect: React.SVGProps; + stop: React.SVGProps; + text: React.SVGProps; + tspan: React.SVGProps; + } +} diff --git a/samples/react-multipage/typings/systemjs/systemjs.d.ts b/samples/react-multipage/typings/systemjs/systemjs.d.ts new file mode 100644 index 000000000..c63a79158 --- /dev/null +++ b/samples/react-multipage/typings/systemjs/systemjs.d.ts @@ -0,0 +1,21 @@ +// Type definitions for System.js 0.18.4 +// Project: https://github.com/systemjs/systemjs +// Definitions by: Ludovic HENIN , Nathan Walker +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +interface System { + import(name: string): any; + defined: any; + amdDefine: () => void; + amdRequire: () => void; + baseURL: string; + paths: { [key: string]: string }; + meta: { [key: string]: Object }; + config: any; +} + +declare var System: System; + +declare module "systemjs" { + export = System; +} \ No newline at end of file diff --git a/samples/react-multipage/typings/tsd.d.ts b/samples/react-multipage/typings/tsd.d.ts new file mode 100644 index 000000000..ba4a4b6d7 --- /dev/null +++ b/samples/react-multipage/typings/tsd.d.ts @@ -0,0 +1,18 @@ +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// diff --git a/samples/react-multipage/typings/whatwg-fetch/whatwg-fetch.d.ts b/samples/react-multipage/typings/whatwg-fetch/whatwg-fetch.d.ts new file mode 100644 index 000000000..c803b553a --- /dev/null +++ b/samples/react-multipage/typings/whatwg-fetch/whatwg-fetch.d.ts @@ -0,0 +1,87 @@ +// Type definitions for fetch API +// Project: https://github.com/github/fetch +// Definitions by: Ryan Graham +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +/// + +declare class Request extends Body { + constructor(input: string|Request, init?:RequestInit); + method: string; + url: string; + headers: Headers; + context: string|RequestContext; + referrer: string; + mode: string|RequestMode; + credentials: string|RequestCredentials; + cache: string|RequestCache; +} + +interface RequestInit { + method?: string; + headers?: HeaderInit|{ [index: string]: string }; + body?: BodyInit; + mode?: string|RequestMode; + credentials?: string|RequestCredentials; + cache?: string|RequestCache; +} + +declare enum RequestContext { + "audio", "beacon", "cspreport", "download", "embed", "eventsource", "favicon", "fetch", + "font", "form", "frame", "hyperlink", "iframe", "image", "imageset", "import", + "internal", "location", "manifest", "object", "ping", "plugin", "prefetch", "script", + "serviceworker", "sharedworker", "subresource", "style", "track", "video", "worker", + "xmlhttprequest", "xslt" +} +declare enum RequestMode { "same-origin", "no-cors", "cors" } +declare enum RequestCredentials { "omit", "same-origin", "include" } +declare enum RequestCache { "default", "no-store", "reload", "no-cache", "force-cache", "only-if-cached" } + +declare class Headers { + append(name: string, value: string): void; + delete(name: string):void; + get(name: string): string; + getAll(name: string): Array; + has(name: string): boolean; + set(name: string, value: string): void; +} + +declare class Body { + bodyUsed: boolean; + arrayBuffer(): Promise; + blob(): Promise; + formData(): Promise; + json(): Promise; + json(): Promise; + text(): Promise; +} +declare class Response extends Body { + constructor(body?: BodyInit, init?: ResponseInit); + error(): Response; + redirect(url: string, status: number): Response; + type: string|ResponseType; + url: string; + status: number; + ok: boolean; + statusText: string; + headers: Headers; + clone(): Response; +} + +declare enum ResponseType { "basic", "cors", "default", "error", "opaque" } + +interface ResponseInit { + status: number; + statusText?: string; + headers?: HeaderInit; +} + +declare type HeaderInit = Headers|Array; +declare type BodyInit = Blob|FormData|string; +declare type RequestInfo = Request|string; + +interface Window { + fetch(url: string|Request, init?: RequestInit): Promise; +} + +declare var fetch: typeof window.fetch;