From e36c8c344b3057f10e0806a863cdf78130b7d157 Mon Sep 17 00:00:00 2001 From: nalaswad Date: Fri, 7 Oct 2016 10:08:38 -0400 Subject: [PATCH] Added the js-display-webpart sample --- samples/js-display-list/.editorconfig | 25 + samples/js-display-list/.gitattributes | 1 + samples/js-display-list/.gitignore | 32 + samples/js-display-list/.npmignore | 14 + samples/js-display-list/.vscode/settings.json | 21 + samples/js-display-list/.vscode/tasks.json | 34 + samples/js-display-list/.yo-rc.json | 7 + samples/js-display-list/README.md | 53 + .../assets/display-list-preview.png | Bin 0 -> 216600 bytes samples/js-display-list/config/config.json | 21 + .../config/deploy-azure-storage.json | 6 + .../config/package-solution.json | 10 + .../config/prepare-deploy.json | 3 + samples/js-display-list/config/serve.json | 9 + samples/js-display-list/config/tslint.json | 51 + .../config/write-manifests.json | 3 + samples/js-display-list/gulpfile.js | 6 + .../js-display-list/js-display-list.njsproj | 86 + samples/js-display-list/package.json | 23 + samples/js-display-list/src/tests.js | 5 + .../IJsDisplayListWebPartProps.ts | 3 + .../jsDisplayList/JsDisplayList.module.scss | 21 + .../JsDisplayListWebPart.manifest.json | 20 + .../jsDisplayList/JsDisplayListWebPart.ts | 190 + .../src/webparts/jsDisplayList/loc/en-us.js | 8 + .../loc/jsDisplayListStrings.d.ts | 13 + .../jsDisplayList/tests/JsDisplayList.test.ts | 7 + samples/js-display-list/tsconfig.json | 9 + .../typings/@ms/odsp-webpack.d.ts | 13 + samples/js-display-list/typings/@ms/odsp.d.ts | 10 + .../assertion-error/assertion-error.d.ts | 15 + .../js-display-list/typings/chai/chai.d.ts | 388 + .../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 ++++++++++++++++ .../js-display-list/typings/mocha/mocha.d.ts | 214 + .../js-display-list/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 + .../js-display-list/typings/react/react.d.ts | 2284 ++ .../typings/systemjs/systemjs.d.ts | 21 + samples/js-display-list/typings/tsd.d.ts | 17 + .../typings/whatwg-fetch/whatwg-fetch.d.ts | 87 + 46 files changed, 28023 insertions(+) create mode 100644 samples/js-display-list/.editorconfig create mode 100644 samples/js-display-list/.gitattributes create mode 100644 samples/js-display-list/.gitignore create mode 100644 samples/js-display-list/.npmignore create mode 100644 samples/js-display-list/.vscode/settings.json create mode 100644 samples/js-display-list/.vscode/tasks.json create mode 100644 samples/js-display-list/.yo-rc.json create mode 100644 samples/js-display-list/README.md create mode 100644 samples/js-display-list/assets/display-list-preview.png create mode 100644 samples/js-display-list/config/config.json create mode 100644 samples/js-display-list/config/deploy-azure-storage.json create mode 100644 samples/js-display-list/config/package-solution.json create mode 100644 samples/js-display-list/config/prepare-deploy.json create mode 100644 samples/js-display-list/config/serve.json create mode 100644 samples/js-display-list/config/tslint.json create mode 100644 samples/js-display-list/config/write-manifests.json create mode 100644 samples/js-display-list/gulpfile.js create mode 100644 samples/js-display-list/js-display-list.njsproj create mode 100644 samples/js-display-list/package.json create mode 100644 samples/js-display-list/src/tests.js create mode 100644 samples/js-display-list/src/webparts/jsDisplayList/IJsDisplayListWebPartProps.ts create mode 100644 samples/js-display-list/src/webparts/jsDisplayList/JsDisplayList.module.scss create mode 100644 samples/js-display-list/src/webparts/jsDisplayList/JsDisplayListWebPart.manifest.json create mode 100644 samples/js-display-list/src/webparts/jsDisplayList/JsDisplayListWebPart.ts create mode 100644 samples/js-display-list/src/webparts/jsDisplayList/loc/en-us.js create mode 100644 samples/js-display-list/src/webparts/jsDisplayList/loc/jsDisplayListStrings.d.ts create mode 100644 samples/js-display-list/src/webparts/jsDisplayList/tests/JsDisplayList.test.ts create mode 100644 samples/js-display-list/tsconfig.json create mode 100644 samples/js-display-list/typings/@ms/odsp-webpack.d.ts create mode 100644 samples/js-display-list/typings/@ms/odsp.d.ts create mode 100644 samples/js-display-list/typings/assertion-error/assertion-error.d.ts create mode 100644 samples/js-display-list/typings/chai/chai.d.ts create mode 100644 samples/js-display-list/typings/es6-collections/es6-collections.d.ts create mode 100644 samples/js-display-list/typings/es6-promise/es6-promise.d.ts create mode 100644 samples/js-display-list/typings/knockout/knockout.d.ts create mode 100644 samples/js-display-list/typings/lodash/lodash.d.ts create mode 100644 samples/js-display-list/typings/mocha/mocha.d.ts create mode 100644 samples/js-display-list/typings/node/node.d.ts create mode 100644 samples/js-display-list/typings/react/react-addons-shallow-compare.d.ts create mode 100644 samples/js-display-list/typings/react/react-addons-test-utils.d.ts create mode 100644 samples/js-display-list/typings/react/react-addons-update.d.ts create mode 100644 samples/js-display-list/typings/react/react-dom.d.ts create mode 100644 samples/js-display-list/typings/react/react.d.ts create mode 100644 samples/js-display-list/typings/systemjs/systemjs.d.ts create mode 100644 samples/js-display-list/typings/tsd.d.ts create mode 100644 samples/js-display-list/typings/whatwg-fetch/whatwg-fetch.d.ts diff --git a/samples/js-display-list/.editorconfig b/samples/js-display-list/.editorconfig new file mode 100644 index 000000000..8ffcdc4ec --- /dev/null +++ b/samples/js-display-list/.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/js-display-list/.gitattributes b/samples/js-display-list/.gitattributes new file mode 100644 index 000000000..212566614 --- /dev/null +++ b/samples/js-display-list/.gitattributes @@ -0,0 +1 @@ +* text=auto \ No newline at end of file diff --git a/samples/js-display-list/.gitignore b/samples/js-display-list/.gitignore new file mode 100644 index 000000000..63c4ae010 --- /dev/null +++ b/samples/js-display-list/.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/js-display-list/.npmignore b/samples/js-display-list/.npmignore new file mode 100644 index 000000000..2c93a9384 --- /dev/null +++ b/samples/js-display-list/.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/js-display-list/.vscode/settings.json b/samples/js-display-list/.vscode/settings.json new file mode 100644 index 000000000..ab46aaa4f --- /dev/null +++ b/samples/js-display-list/.vscode/settings.json @@ -0,0 +1,21 @@ +{ + // 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 + } +} diff --git a/samples/js-display-list/.vscode/tasks.json b/samples/js-display-list/.vscode/tasks.json new file mode 100644 index 000000000..5204908d6 --- /dev/null +++ b/samples/js-display-list/.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/js-display-list/.yo-rc.json b/samples/js-display-list/.yo-rc.json new file mode 100644 index 000000000..83e36d1e2 --- /dev/null +++ b/samples/js-display-list/.yo-rc.json @@ -0,0 +1,7 @@ +{ + "@microsoft/generator-sharepoint": { + "libraryName": "js-display-list", + "libraryId": "faf13055-4551-491c-8bbf-a00b30adfd54", + "framework": "none" + } +} \ No newline at end of file diff --git a/samples/js-display-list/README.md b/samples/js-display-list/README.md new file mode 100644 index 000000000..62f772b84 --- /dev/null +++ b/samples/js-display-list/README.md @@ -0,0 +1,53 @@ +# Display List JavaScript Client-Side Web Part + +## Summary +Sample Web Part that demonstrates the use of JavaScript in creating a SharePoint Framework web part. The properties pane for this web part display a drop down list of lists in the current web. Once the user selects one of the lists, the web part display the contents of the list. + + +![Screeshot of the Display List web part](./assets/display-list-preview.png). + +## 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) +--------|--------- +js-display-list|Naamat Al-Aswad, P.Eng. + + +## Version history + +Version|Date|Comments +-------|----|-------- +1.0|September 22, 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.** + +--- + +## Minimal Path to Awesome + +- Clone this repository +- in the command line run: + - `npm install` + - `tsd install` + - `gulp serve` + - `Open the *workbench* on your Office 365 Developer tenant` + +## Features +The js-display-list web part displays the content of the list specified in the web part properties pane. + +This Web Part illustrates the following concepts on top of the SharePoint Framework: + +* Using a dynamic drop down box in the web part properties pane to display the titles of the lists in the current web +* The use of a Loading Indicator +* Logging +* Rendering error messages. + + \ No newline at end of file diff --git a/samples/js-display-list/assets/display-list-preview.png b/samples/js-display-list/assets/display-list-preview.png new file mode 100644 index 0000000000000000000000000000000000000000..f237f8b8e076ba296ba7afe5efb5879338dd7cd6 GIT binary patch literal 216600 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 LNkvXXu0mjfBUtOm literal 0 HcmV?d00001 diff --git a/samples/js-display-list/config/config.json b/samples/js-display-list/config/config.json new file mode 100644 index 000000000..0846a463b --- /dev/null +++ b/samples/js-display-list/config/config.json @@ -0,0 +1,21 @@ +{ + "entries": [ + { + "entry": "./lib/webparts/jsDisplayList/JsDisplayListWebPart.js", + "manifest": "./src/webparts/jsDisplayList/JsDisplayListWebPart.manifest.json", + "outputPath": "./dist/js-display-list.bundle.js" + } + ], + "externals": { + "@microsoft/sp-client-base": "node_modules/@microsoft/sp-client-base/dist/sp-client-base.js", + "@microsoft/sp-client-preview": "node_modules/@microsoft/sp-client-preview/dist/sp-client-preview.js", + "@microsoft/sp-lodash-subset": "node_modules/@microsoft/sp-lodash-subset/dist/sp-lodash-subset.js", + "office-ui-fabric-react": "node_modules/office-ui-fabric-react/dist/office-ui-fabric-react.js", + "react": "node_modules/react/dist/react.min.js", + "react-dom": "node_modules/react-dom/dist/react-dom.min.js", + "react-dom/server": "node_modules/react-dom/dist/react-dom-server.min.js" + }, + "localizedResources": { + "jsDisplayListStrings": "webparts/jsDisplayList/loc/{locale}.js" + } +} diff --git a/samples/js-display-list/config/deploy-azure-storage.json b/samples/js-display-list/config/deploy-azure-storage.json new file mode 100644 index 000000000..b736492db --- /dev/null +++ b/samples/js-display-list/config/deploy-azure-storage.json @@ -0,0 +1,6 @@ +{ + "workingDir": "./temp/deploy/", + "account": "", + "container": "js-display-list", + "accessKey": "" +} \ No newline at end of file diff --git a/samples/js-display-list/config/package-solution.json b/samples/js-display-list/config/package-solution.json new file mode 100644 index 000000000..e3baf4217 --- /dev/null +++ b/samples/js-display-list/config/package-solution.json @@ -0,0 +1,10 @@ +{ + "solution": { + "name": "js-display-list-client-side-solution", + "id": "faf13055-4551-491c-8bbf-a00b30adfd54", + "version": "1.0.0.0" + }, + "paths": { + "zippedPackage": "solution/js-display-list.spapp" + } +} diff --git a/samples/js-display-list/config/prepare-deploy.json b/samples/js-display-list/config/prepare-deploy.json new file mode 100644 index 000000000..6aca63656 --- /dev/null +++ b/samples/js-display-list/config/prepare-deploy.json @@ -0,0 +1,3 @@ +{ + "deployCdnPath": "temp/deploy" +} diff --git a/samples/js-display-list/config/serve.json b/samples/js-display-list/config/serve.json new file mode 100644 index 000000000..087899637 --- /dev/null +++ b/samples/js-display-list/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/js-display-list/config/tslint.json b/samples/js-display-list/config/tslint.json new file mode 100644 index 000000000..bf3362c87 --- /dev/null +++ b/samples/js-display-list/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/js-display-list/config/write-manifests.json b/samples/js-display-list/config/write-manifests.json new file mode 100644 index 000000000..0a4bafb06 --- /dev/null +++ b/samples/js-display-list/config/write-manifests.json @@ -0,0 +1,3 @@ +{ + "cdnBasePath": "" +} \ No newline at end of file diff --git a/samples/js-display-list/gulpfile.js b/samples/js-display-list/gulpfile.js new file mode 100644 index 000000000..7d36ddb1c --- /dev/null +++ b/samples/js-display-list/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/js-display-list/js-display-list.njsproj b/samples/js-display-list/js-display-list.njsproj new file mode 100644 index 000000000..f5716b034 --- /dev/null +++ b/samples/js-display-list/js-display-list.njsproj @@ -0,0 +1,86 @@ + + + + Debug + 2.0 + {faf13055-4551-491c-8bbf-a00b30adfd54} + + 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/js-display-list/package.json b/samples/js-display-list/package.json new file mode 100644 index 000000000..18dbfe491 --- /dev/null +++ b/samples/js-display-list/package.json @@ -0,0 +1,23 @@ +{ + "name": "js-display-list", + "version": "0.0.1", + "private": true, + "engines": { + "node": ">=0.10.0" + }, + "dependencies": { + "@microsoft/sp-client-base": "~0.2.1", + "@microsoft/sp-client-preview": "~0.3.0" + }, + "devDependencies": { + "@microsoft/sp-build-web": "~0.5.0", + "@microsoft/sp-module-interfaces": "~0.2.0", + "@microsoft/sp-webpart-workbench": "~0.3.0", + "gulp": "~3.9.1" + }, + "scripts": { + "build": "gulp bundle", + "clean": "gulp nuke", + "test": "gulp test" + } +} diff --git a/samples/js-display-list/src/tests.js b/samples/js-display-list/src/tests.js new file mode 100644 index 000000000..cb4bb5cf2 --- /dev/null +++ b/samples/js-display-list/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/js-display-list/src/webparts/jsDisplayList/IJsDisplayListWebPartProps.ts b/samples/js-display-list/src/webparts/jsDisplayList/IJsDisplayListWebPartProps.ts new file mode 100644 index 000000000..d7287f14b --- /dev/null +++ b/samples/js-display-list/src/webparts/jsDisplayList/IJsDisplayListWebPartProps.ts @@ -0,0 +1,3 @@ +export interface IJsDisplayListWebPartProps { + listTitle: string; +} diff --git a/samples/js-display-list/src/webparts/jsDisplayList/JsDisplayList.module.scss b/samples/js-display-list/src/webparts/jsDisplayList/JsDisplayList.module.scss new file mode 100644 index 000000000..97d0b4f80 --- /dev/null +++ b/samples/js-display-list/src/webparts/jsDisplayList/JsDisplayList.module.scss @@ -0,0 +1,21 @@ +.jsDisplayList { + .container { + max-width: 700px; + margin: 0px auto; + box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1); + } + + .row { + padding: 20px; + } + + .listItem { + max-width: 715px; + margin: 5px auto 5px auto; + box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1); + } + + .button { + text-decoration: none; + } +} diff --git a/samples/js-display-list/src/webparts/jsDisplayList/JsDisplayListWebPart.manifest.json b/samples/js-display-list/src/webparts/jsDisplayList/JsDisplayListWebPart.manifest.json new file mode 100644 index 000000000..dbe8e97dc --- /dev/null +++ b/samples/js-display-list/src/webparts/jsDisplayList/JsDisplayListWebPart.manifest.json @@ -0,0 +1,20 @@ +{ + "$schema": "../../../node_modules/@microsoft/sp-module-interfaces/lib/manifestSchemas/jsonSchemas/clientSideComponentManifestSchema.json", + + "id": "1b513296-0d6c-4992-880a-007876428daa", + "componentType": "WebPart", + "version": "0.0.1", + "manifestVersion": 2, + + "preconfiguredEntries": [{ + "groupId": "1b513296-0d6c-4992-880a-007876428daa", + "group": { "default": "Under Development" }, + "title": { "default": "js-display-list" }, + "description": { "default": "Display Data from a SharePoint List" }, + "officeFabricIconFontName": "Page", + "properties": { + "description": "DisplayList", + "listTitle": "Announcements" + } + }] +} diff --git a/samples/js-display-list/src/webparts/jsDisplayList/JsDisplayListWebPart.ts b/samples/js-display-list/src/webparts/jsDisplayList/JsDisplayListWebPart.ts new file mode 100644 index 000000000..1e341ce85 --- /dev/null +++ b/samples/js-display-list/src/webparts/jsDisplayList/JsDisplayListWebPart.ts @@ -0,0 +1,190 @@ +import { + BaseClientSideWebPart, + IPropertyPaneSettings, + PropertyPaneDropdown, + IPropertyPaneDropdownOption, + IWebPartContext, + PropertyPaneTextField +} from '@microsoft/sp-client-preview'; + +import styles from './JsDisplayList.module.scss'; + +import * as strings from 'jsDisplayListStrings'; +import { IJsDisplayListWebPartProps } from './IJsDisplayListWebPartProps'; + +import { EnvironmentType, Log } from '@microsoft/sp-client-base'; + +//====================== + +export interface ISPLists { + value: ISPList[]; +} + +export interface ISPList { + Title: string; + Id: string; +} + +export interface ISPOption { + Id: string; + Title: string; +} + + +export default class JsDisplayListWebPart extends BaseClientSideWebPart { + + public constructor(context: IWebPartContext) { + super(context); + } + + public render(): void { + debugger; + this.context.statusRenderer.clearError(this.domElement); + this.context.statusRenderer.displayLoadingIndicator(this.domElement, strings.Loading); + Log.verbose('js-display-List', 'Invoking render'); + this._renderListAsync(); + } + + protected get disableReactivePropertyChanges(): boolean { + return true; + } + + protected get propertyPaneSettings(): IPropertyPaneSettings { + return { + pages: [ + { + header: { + description: strings.PropertyPaneDescription + }, + groups: [ + { + groupName: strings.DataGroupName, + groupFields: [ + + PropertyPaneDropdown('listTitle', { + label: 'List Title', + options: this._dropdownOptions + }) + ] + } + ] + } + ] + }; + } + +private _dropdownOptions: IPropertyPaneDropdownOption[] = []; + +public onInit(): Promise { + this._getListTitles() + .then((response) => { + + this._dropdownOptions = response.value.map((list: ISPList) => { + return { + key: list.Title, + text: list.Title + }; + }); + }); + return Promise.resolve(); +} + + + private _getListTitles(): Promise { + return this.context.httpClient.get(this.context.pageContext.web.absoluteUrl + `/_api/web/lists?$filter=Hidden eq false`) + .then((response: Response) => { + return response.json(); + }); + } + + + private _getListData(listName: string): Promise { + //return this.context.httpClient.get(this.context.pageContext.web.absoluteUrl + `/_api/Web/Lists(guid'${listName}')/items?$select=ID,Title,Created,Author/ID,Author/Title&$expand=Author/ID,Author/Title`) + return this.context.httpClient.get(this.context.pageContext.web.absoluteUrl + `/_api/web/lists/GetByTitle('${listName}')/items?$select=Title,ID,Created,Author/ID,Author/Title&$expand=Author/ID,Author/Title`) + + .then((response: Response) => { + return response.json(); + }); + } + + private _renderList(items: ISPList[]): void { + let html: string = ''; + debugger; + + + //debugger; + items.forEach((item: ISPList) => { + let title:string = ''; + + if (item.Title === null) + { + title= "Missing title for item with ID= " + item.Id; + } + else + { + title= item.Title; + } + + + + var created = item["Created"]; + + html += ` +
+
${title}
+
${created.substring(0,created.length-1).replace('T',' ')}
+
${item['Author'].Title}
+
`; + }); + + if (items.length == 0) + { + html ='

The selected list is empty

'; + + } + const listContainer: Element = this.domElement.querySelector('#spListContainer'); + this.context.statusRenderer.clearLoadingIndicator(this.domElement); + listContainer.innerHTML = html; +} + + + private _renderListAsync(): void { + + this.domElement.innerHTML = ` +
+

${this.properties.listTitle} List

+
+
+
Title
+
Created
+
Created By
+ +
+
+
+
+
`; + + const listContainer: Element = this.domElement.querySelector('#spListContainer'); + + // Local environment + debugger; + if (this.context.environment.type === EnvironmentType.Local) { + let html: string = '

Local test environment [No connection to SharePoint]

'; + this.context.statusRenderer.clearLoadingIndicator(this.domElement); + listContainer.innerHTML = html; + } + else { + //debugger; + this._getListData(this.properties.listTitle).then((response) => { + this._renderList(response.value); + + }).catch((err) => { + Log.error('js-display-List', err); + this.context.statusRenderer.clearLoadingIndicator(this.domElement); + this.context.statusRenderer.renderError(this.domElement, err); + }); + } + } + +} diff --git a/samples/js-display-list/src/webparts/jsDisplayList/loc/en-us.js b/samples/js-display-list/src/webparts/jsDisplayList/loc/en-us.js new file mode 100644 index 000000000..155bfd8cb --- /dev/null +++ b/samples/js-display-list/src/webparts/jsDisplayList/loc/en-us.js @@ -0,0 +1,8 @@ +define([], function() { + return { + "PropertyPaneDescription": "Manage the Display List Web Part settings.", + "DataGroupName": "Basic Properties", + "LocationFieldLabel": "Location", + "Loading" : "Web part is loading ..." + } +}); \ No newline at end of file diff --git a/samples/js-display-list/src/webparts/jsDisplayList/loc/jsDisplayListStrings.d.ts b/samples/js-display-list/src/webparts/jsDisplayList/loc/jsDisplayListStrings.d.ts new file mode 100644 index 000000000..384e8e8f6 --- /dev/null +++ b/samples/js-display-list/src/webparts/jsDisplayList/loc/jsDisplayListStrings.d.ts @@ -0,0 +1,13 @@ +declare interface IJsDisplayListStrings { + PropertyPaneDescription: string; + BasicGroupName: string; + DescriptionFieldLabel: string; + DataGroupName: string; + Loading: string; +} + +declare module 'jsDisplayListStrings' { + + const strings: IJsDisplayListStrings; + export = strings; +} diff --git a/samples/js-display-list/src/webparts/jsDisplayList/tests/JsDisplayList.test.ts b/samples/js-display-list/src/webparts/jsDisplayList/tests/JsDisplayList.test.ts new file mode 100644 index 000000000..7a1e51faf --- /dev/null +++ b/samples/js-display-list/src/webparts/jsDisplayList/tests/JsDisplayList.test.ts @@ -0,0 +1,7 @@ +import * as assert from 'assert'; + +describe('JsDisplayListWebPart', () => { + it('should do something', () => { + assert.ok(true); + }); +}); diff --git a/samples/js-display-list/tsconfig.json b/samples/js-display-list/tsconfig.json new file mode 100644 index 000000000..98c8662a9 --- /dev/null +++ b/samples/js-display-list/tsconfig.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "jsx": "react", + "declaration": true, + "sourceMap": true + } +} diff --git a/samples/js-display-list/typings/@ms/odsp-webpack.d.ts b/samples/js-display-list/typings/@ms/odsp-webpack.d.ts new file mode 100644 index 000000000..f2b3b03df --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/@ms/odsp.d.ts b/samples/js-display-list/typings/@ms/odsp.d.ts new file mode 100644 index 000000000..ae3334fe0 --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/assertion-error/assertion-error.d.ts b/samples/js-display-list/typings/assertion-error/assertion-error.d.ts new file mode 100644 index 000000000..08217c9e5 --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/chai/chai.d.ts b/samples/js-display-list/typings/chai/chai.d.ts new file mode 100644 index 000000000..da4d718e1 --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/es6-collections/es6-collections.d.ts b/samples/js-display-list/typings/es6-collections/es6-collections.d.ts new file mode 100644 index 000000000..bc39df295 --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/es6-promise/es6-promise.d.ts b/samples/js-display-list/typings/es6-promise/es6-promise.d.ts new file mode 100644 index 000000000..a8f8d7845 --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/knockout/knockout.d.ts b/samples/js-display-list/typings/knockout/knockout.d.ts new file mode 100644 index 000000000..267f3174c --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/lodash/lodash.d.ts b/samples/js-display-list/typings/lodash/lodash.d.ts new file mode 100644 index 000000000..1e39d223f --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/mocha/mocha.d.ts b/samples/js-display-list/typings/mocha/mocha.d.ts new file mode 100644 index 000000000..88dc359fc --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/node/node.d.ts b/samples/js-display-list/typings/node/node.d.ts new file mode 100644 index 000000000..710a133f0 --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/react/react-addons-shallow-compare.d.ts b/samples/js-display-list/typings/react/react-addons-shallow-compare.d.ts new file mode 100644 index 000000000..4fb9aa846 --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/react/react-addons-test-utils.d.ts b/samples/js-display-list/typings/react/react-addons-test-utils.d.ts new file mode 100644 index 000000000..3b77ac4c5 --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/react/react-addons-update.d.ts b/samples/js-display-list/typings/react/react-addons-update.d.ts new file mode 100644 index 000000000..f1fe4c24f --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/react/react-dom.d.ts b/samples/js-display-list/typings/react/react-dom.d.ts new file mode 100644 index 000000000..80a0c604e --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/react/react.d.ts b/samples/js-display-list/typings/react/react.d.ts new file mode 100644 index 000000000..94a763b17 --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/systemjs/systemjs.d.ts b/samples/js-display-list/typings/systemjs/systemjs.d.ts new file mode 100644 index 000000000..c63a79158 --- /dev/null +++ b/samples/js-display-list/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/js-display-list/typings/tsd.d.ts b/samples/js-display-list/typings/tsd.d.ts new file mode 100644 index 000000000..7cccc38a1 --- /dev/null +++ b/samples/js-display-list/typings/tsd.d.ts @@ -0,0 +1,17 @@ +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// +/// diff --git a/samples/js-display-list/typings/whatwg-fetch/whatwg-fetch.d.ts b/samples/js-display-list/typings/whatwg-fetch/whatwg-fetch.d.ts new file mode 100644 index 000000000..c803b553a --- /dev/null +++ b/samples/js-display-list/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;