From 087c35671ba98e50e649592e21ad966c4a312402 Mon Sep 17 00:00:00 2001 From: Vardhaman Deshpande Date: Mon, 13 Mar 2017 10:33:59 +0000 Subject: [PATCH] Updated react-organisationchart for SPFx 1.0 (#156) * removed unused imports, changed image urls * updated to drop 5 * updated webpart for SPFx 1.0 * added images and readme --- samples/react-organisationchart/.gitignore | 5 +- samples/react-organisationchart/.npmignore | 2 +- .../.vscode/settings.json | 22 +- .../.vscode/tasks.json | 34 - samples/react-organisationchart/.yo-rc.json | 8 + samples/react-organisationchart/README.md | 13 +- .../assets/orgchart-mock.png | Bin 0 -> 69206 bytes .../assets/orgchart.png | Bin 64881 -> 53834 bytes .../config/config.json | 10 +- .../{prepare-deploy.json => copy-assets.json} | 0 .../config/deploy-azure-storage.json | 2 +- .../config/package-solution.json | 6 +- .../config/tslint.json | 7 +- .../organisation-chart.njsproj | 86 - samples/react-organisationchart/package.json | 31 +- samples/react-organisationchart/src/tests.js | 5 - .../IOrganisationChartWebPartProps.ts | 2 +- .../OrganisationChartWebPart.manifest.json | 9 +- .../OrganisationChartWebPart.ts | 35 +- .../components/IOrganisationChartProps.ts | 6 + .../OrganisationChart.module.scss | 2 +- .../components/OrganisationChart.tsx | 56 +- .../organisationChart/interfaces/IPerson.ts | 2 +- .../organisationChart/interfaces/index.ts | 2 + .../webparts/organisationChart/loc/en-us.js | 2 +- .../organisationChart/loc/mystrings.d.ts | 2 +- .../mocks/MockUserProfileService.ts | 63 +- .../webparts/organisationChart/mocks/index.ts | 1 + .../services/UserProfileService.ts | 138 +- .../organisationChart/services/index.ts | 1 + .../tests/OrganisationChart.test.ts | 4 +- samples/react-organisationchart/tsconfig.json | 8 +- .../typings/@ms/odsp-webpack.d.ts | 13 - .../typings/@ms/odsp.d.ts | 10 +- .../assertion-error/assertion-error.d.ts | 15 - .../typings/chai/chai.d.ts | 388 - .../es6-collections/es6-collections.d.ts | 113 - .../typings/es6-promise/es6-promise.d.ts | 74 - .../typings/globals/combokeys/index.d.ts | 104 - .../typings/globals/combokeys/typings.json | 8 - .../typings/index.d.ts | 1 - .../typings/knockout/knockout.d.ts | 631 - .../typings/lodash/lodash.d.ts | 20808 ---------------- .../typings/mocha/mocha.d.ts | 214 - .../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 - .../typings/react/react.d.ts | 2284 -- .../typings/systemjs/systemjs.d.ts | 21 - .../react-organisationchart/typings/tsd.d.ts | 16 - .../typings/whatwg-fetch/whatwg-fetch.d.ts | 87 - 53 files changed, 225 insertions(+), 27793 deletions(-) delete mode 100644 samples/react-organisationchart/.vscode/tasks.json create mode 100644 samples/react-organisationchart/.yo-rc.json create mode 100644 samples/react-organisationchart/assets/orgchart-mock.png rename samples/react-organisationchart/config/{prepare-deploy.json => copy-assets.json} (100%) delete mode 100644 samples/react-organisationchart/organisation-chart.njsproj delete mode 100644 samples/react-organisationchart/src/tests.js create mode 100644 samples/react-organisationchart/src/webparts/organisationChart/components/IOrganisationChartProps.ts rename samples/react-organisationchart/src/webparts/organisationChart/{ => components}/OrganisationChart.module.scss (97%) create mode 100644 samples/react-organisationchart/src/webparts/organisationChart/interfaces/index.ts create mode 100644 samples/react-organisationchart/src/webparts/organisationChart/mocks/index.ts create mode 100644 samples/react-organisationchart/src/webparts/organisationChart/services/index.ts delete mode 100644 samples/react-organisationchart/typings/@ms/odsp-webpack.d.ts delete mode 100644 samples/react-organisationchart/typings/assertion-error/assertion-error.d.ts delete mode 100644 samples/react-organisationchart/typings/chai/chai.d.ts delete mode 100644 samples/react-organisationchart/typings/es6-collections/es6-collections.d.ts delete mode 100644 samples/react-organisationchart/typings/es6-promise/es6-promise.d.ts delete mode 100644 samples/react-organisationchart/typings/globals/combokeys/index.d.ts delete mode 100644 samples/react-organisationchart/typings/globals/combokeys/typings.json delete mode 100644 samples/react-organisationchart/typings/index.d.ts delete mode 100644 samples/react-organisationchart/typings/knockout/knockout.d.ts delete mode 100644 samples/react-organisationchart/typings/lodash/lodash.d.ts delete mode 100644 samples/react-organisationchart/typings/mocha/mocha.d.ts delete mode 100644 samples/react-organisationchart/typings/node/node.d.ts delete mode 100644 samples/react-organisationchart/typings/react/react-addons-shallow-compare.d.ts delete mode 100644 samples/react-organisationchart/typings/react/react-addons-test-utils.d.ts delete mode 100644 samples/react-organisationchart/typings/react/react-addons-update.d.ts delete mode 100644 samples/react-organisationchart/typings/react/react-dom.d.ts delete mode 100644 samples/react-organisationchart/typings/react/react.d.ts delete mode 100644 samples/react-organisationchart/typings/systemjs/systemjs.d.ts delete mode 100644 samples/react-organisationchart/typings/whatwg-fetch/whatwg-fetch.d.ts diff --git a/samples/react-organisationchart/.gitignore b/samples/react-organisationchart/.gitignore index 29d9f19b2..b19bbe123 100644 --- a/samples/react-organisationchart/.gitignore +++ b/samples/react-organisationchart/.gitignore @@ -3,9 +3,6 @@ logs *.log npm-debug.log* -# Yeoman configuration files -.yo-rc.json - # Dependency directories node_modules @@ -14,7 +11,7 @@ dist lib solution temp -*.spapp +*.sppkg # Coverage directory used by tools like istanbul coverage diff --git a/samples/react-organisationchart/.npmignore b/samples/react-organisationchart/.npmignore index 8a1c38d7f..2c93a9384 100644 --- a/samples/react-organisationchart/.npmignore +++ b/samples/react-organisationchart/.npmignore @@ -2,7 +2,7 @@ .vscode coverage node_modules -solution +sharepoint src temp diff --git a/samples/react-organisationchart/.vscode/settings.json b/samples/react-organisationchart/.vscode/settings.json index ab46aaa4f..0c4a6693f 100644 --- a/samples/react-organisationchart/.vscode/settings.json +++ b/samples/react-organisationchart/.vscode/settings.json @@ -1,21 +1,3 @@ { - // 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 - } -} + "vsicons.presets.angular": false +} \ No newline at end of file diff --git a/samples/react-organisationchart/.vscode/tasks.json b/samples/react-organisationchart/.vscode/tasks.json deleted file mode 100644 index 5204908d6..000000000 --- a/samples/react-organisationchart/.vscode/tasks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - // See http://go.microsoft.com/fwlink/?LinkId=733558 - // for the documentation about the tasks.json format - "version": "0.1.0", - "command": "gulp", - "isShellCommand": true, - "showOutput": "always", - "args": [ - "--no-color" - ], - "tasks": [ - { - "taskName": "bundle", - "isBuildCommand": true, - "problemMatcher": [ - "$tsc" - ] - }, - { - "taskName": "test", - "isTestCommand": true, - "problemMatcher": [ - "$tsc" - ] - }, - { - "taskName": "serve", - "isWatching": true, - "problemMatcher": [ - "$tsc" - ] - } - ] -} diff --git a/samples/react-organisationchart/.yo-rc.json b/samples/react-organisationchart/.yo-rc.json new file mode 100644 index 000000000..a09a345d4 --- /dev/null +++ b/samples/react-organisationchart/.yo-rc.json @@ -0,0 +1,8 @@ +{ + "@microsoft/generator-sharepoint": { + "libraryName": "react-organisationchart", + "framework": "react", + "version": "1.0.0", + "libraryId": "95c4b6f9-b123-4eca-a70a-c1165995faa2" + } +} \ No newline at end of file diff --git a/samples/react-organisationchart/README.md b/samples/react-organisationchart/README.md index 1bfdf2bfb..4773035e7 100644 --- a/samples/react-organisationchart/README.md +++ b/samples/react-organisationchart/README.md @@ -1,12 +1,14 @@ # Organisation Chart ## Summary -A simple Organisation Chart webpart using Office UI Fabric, React, OData batching and ServiceScope plumbing. +A simple Organisation Chart webpart using Office UI Fabric, React, REST API batching and ServiceScope plumbing. -![Organisation Chart for the current user](./assets/orgchart.png) +![Organisation Chart for the current user running in SharePoint](./assets/orgchart.png) + +![Organisation Chart for the current user running in local Workbench](./assets/orgchart-mock.png) ## Used SharePoint Framework Version -![drop](https://img.shields.io/badge/drop-drop4-red.svg) +![drop](https://img.shields.io/badge/version-GA-green.svg) ## Applies to @@ -24,6 +26,7 @@ OrganisationChart | Vardhaman Deshpande ([@vrdmn](https://twitter.com/vrdmn) , [ Version|Date|Comments -------|----|-------- 1.0|September 14, 2016|Initial release +2.0|March 12, 2017|Updated for SPFx 1.0 ## 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.** @@ -35,7 +38,6 @@ Version|Date|Comments - Clone this repository - in the command line run: - `npm install` - - `tsd install` - `gulp serve` @@ -47,7 +49,8 @@ This Web Part illustrates the following concepts on top of the SharePoint Framew - Office UI Fabric - React -- OData batching +- REST API operations in SPFx +- REST API batching in SPFx - ServiceScope and ServiceKeys - Service Locator pattern to register and consume services diff --git a/samples/react-organisationchart/assets/orgchart-mock.png b/samples/react-organisationchart/assets/orgchart-mock.png new file mode 100644 index 0000000000000000000000000000000000000000..ea97126d31b939b7dc12cc81b0189ad9a52ec513 GIT binary patch literal 69206 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 b`r`)QNVz_$D)8NHegYz?C{Zf*!SBBSn1R5j literal 0 HcmV?d00001 diff --git a/samples/react-organisationchart/assets/orgchart.png b/samples/react-organisationchart/assets/orgchart.png index fa0326356e11b03624e74ab34f507ac75c30d223..e4e5f1f26e1b8fc0be05e1644be1e9e9dfc29f76 100644 GIT binary patch literal 53834 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 E4;qIprT_o{ literal 64881 zcmeFZbx>W=_b)~af(LhZPjDx=yW1tW+r=f2Ai>=|xVw9B_aGMy?#{)fhwuBnzSmBt z(@v+;f65HQoHOU_z0O*D`DYQLq#%imfR6wJ1A{CrC8h!c^R5sE=55-?x4@lW)z;#` zpEph_k|Hn_L|oV!wwmX)$3n zchFG={8zQvrT(GomEm5ZPdCU|SOdu7A8?i(`j9dDMC7Pu9GH-Yelylz$%d(*$^O;L z{#%DBEp``F+_dqlsECv~S$EAV(Q9}7GY;H)k?%g~JR=Vs=FM&u<7`Q6{_-h!a52&U z{fGFtSM9VDAP5HL!`PxEzDM*wvNt6-uh)Tr@j+3v7o=UHZ`D{{Zy+Gjp^_+X3Ht@T zF9N;Zz{FM|7R(v+e~${U)c$&dmNAdtTPy|+o*4bN=NsULl9rT5vVT?8XJ6kJcns=* zpdi)D!^%z+BqTx(tG`JGK6G!vhC8Dvm^>~Ae?u^6B8m9sQkeq-_@&OGVP+A56@GM! z4EGSqrLa;_QJJo^xWrM*=TL{tm+Lk@Ki#ZRnv4G+9!X-!`eNJpkz@y(?B&y;<|kQah!|@~$x%LRV=&IXTg9btU3< z_$DRwQF@(B^q2E`G=2e^MY_+^z02WTx!28!pr9b;&i1zW7ehls1K%f?@qcgL!Cw7~ zKJ0Ld+5X@1ap#BF?rxTEW?~{XK0dGIbY5l0Jv|3Uf|`w|=Y6}^jooUSG(vJO^U%gS zIF#jPCmLSfRPrHUj}@og@eBbk*SRunOy7&GA=N^Km>5Pjvr*E7M}TD2I9O>ZDO`4o z$^Hm}C?Y=B?O`nZ%fc)la$EV;T*;_dXJP?Q=kb3Ol975X&LNBs*T)1xK9AG+vfH6d zWdD2q0j$1(La78=>{ePb1-wp{o8z3#0UDMX?N4`ht^tYA(9pOYEyRe?7lT3x1--f9 zmjU9hPuH^U%}h+Z@AnJyJS+8ECC1#=zTe!QZwkFU)@EfHL=g*E1UPQ?#{|ZIfro_Q zuqdRkZV!<7w)s4H%E^uPhG0mOvw+%?)he~mejyW7fZBQOSNTI}u%3?_*J62-7#afj z2PHqI>BR_(zm=Cv3b3&tHSW-S`@bF`QQ7yfu(4ZIE__yhX;m7-u$l0Az*||q&nXEB zE&u}&ahSvL*meM6qoJWuDvFAVPGs=mprf<;Jl;yjQD<;F`l+$dX(F6mTwI)=-)$!u zNY!2+FWtN{GR5n1XH2)z?&+)tHP7?r2qNm4dd0ABcCb{aNRn#0Kb=qcn+f*jVAlH2 zk2jdLHW1cSW#)PG3sMp?Fj~BLnWyxM;M0+lS@(R-l;{7@8;g+2&gazly%aWcjdC4v zde@_cYTX8#S54U^obEd9eCbeX&x@jCWnyCD=1x{S1-LXMTapyd@Zsuk-o85kerjqe zPaF8Sw9HImJUkw|m$g*!UAxFqJKj=eP1TC zMWvrJg?ux6i6z8{SvJGL7e|#Q~nx0-kw{}l?{!LgPI)H7pjeSM^oZrVjOqJ ziKaX9l%)4#i=NI0NX*C6rDK58Gd?`r;&!?^l`E;3!JGfIQ-dn>c!s0!^(&0_$!fdo z8ydw-%04-(QQ^{=NYc%#4*KHH5% z?*jdQqKJ&2KRs{v$D4Q5@~KxVZfh~_$1{bBz&WO+$&it8+Zv29(HqXj1-k&^*Q^Bj z!y=~+k_Fxa2WOfaQv$GOri0OBAP{J!)vXXAWF8<@RpAR685uiH@xrUzB{IjW0ZJ%i z#F54r=B?m8qCdQ`9M+2#4pd}z!rEr7`)_9LAKBO89!X4(=%`P9@=$~!*=C)XNbeYu zSua!=qAjXd%jfXlZ1UYl(=E5SgAYAFdC#4*dDLm$vr&g;tWlkc#A^p zT)7>akcr7pEcW!jQ#07q>Iz}+#=N~ovrt(Zyge}eIacxg=0b$Rk0cNf?0qb4$^3wn`3 zZSbY7craeK_<@yN1X901Z?s=~23%2vL1%~gL?&>m!(f;=Fm5_?u1g((%D?H8?G$+QqDa21qHEY0-mhL!qe5NmUQOhS(L|Vo{5z8=}523|MS6B zXL)Igxr>|g`c?Olr81ZuLW_%FIJgWU*!kDWD#{s3*ka}bxRhG+6i%#0FX=Z~f}%Ch^pxl^ zNnW3O!q!u-15Eu=u;70_PVb9yd&!o%{S`IfqNu1sl-Ph6Yk$cfr(%^{wtK%+XZB$t z!|R&u+F94)+}HtI-M;_Vjkl(ZVNv<6f4gBu_x137CmzH1%c2+J53^}}yPG|388I%0 zfF{d`i3Qj=6iG`!K2r$_`b=aB92|qDJLqT>qQ7y(Ro%(bjO%fK-?7oqNc?ZCAk}0n z1!XH&=rvy~*>{?nnT0B`1sr?_cUK_J+t~_&O>d(H1jBjqOI8=+%T6~~Ow86S`S~oj zLXB&p(85YI8IVZiC{G@>ob0)nayri&DqZ;ROKy7YNqTqmp|SnY^KD6W3D!D03OMD^Xl_AGQe+4Mg2Uu6;?ZI@x-5;v)3F@%+xvh{EuBwiP@w zkU?l;L&zI=Oerr@68#ckzOm_&%4=zi-DY^o&w{|LI^#C=rs7+ay?dqV80%=a-2t(| z-{QCur`krj1AENm0UVEN;hM&_`LFFyvT@a|opK@LVYdtANLkcgr)|$RVsMon47<`H z!-cDO5{HzBtKpky9hl1f$L+{Q?qEe$0VE3c^va)voG2ZPsblpPVS5HMZuwe=KgAz$ z*|BS>h_u*aBa{owUOc?+_OK^D^oh3(V0XRkaSdHsWQ^^s4t{wYn=o=^_H2|roLeO+ z7rdS5d?60IegXWL;N4bSr7?qoV<0H#(YkuMD0XDDn*4!tx@hsjaQ8sc}7CblK>ICw7gZ zQR#0JUuHXTSa3Nw$Y{OkZpi%p{KTyeU46I#z_t$Js z@ynW;?4PZ7AUOQp)d;3IBttK)v(5o*7yRa*ENZ^uoC^+BUhMiuglK^--Rwj59?JY6$|q& z@3fC`C9B^}%A*;q49Xy5BgvO-ds7~lT?lQCC6REKYT3<|J z`}AB@M7K?M5zAoCx~CCKMiE15Oh@i6clW{Qjb4B|_PiMN_bHIii)Y(a%rG=C>8E+M z?=XYNBPBQY&_f&+kY1zRO1bXK=MNO>;gcM4!ssOj^-r{ho5BT%bn{1t9GdNI7$kmF z)H*4_#2%C*$xk?p_jpcf#Djun)u|I+582v4MN~F7BIc;{}cFGtB(c6oq_L+#FlY$Mg zFr}*FoC`!&n3c{Whv2&+l$!1TmHt%|ayzlwY-iWuG*8mR_$c>*#S}y7V`ZVTT>o7&cWS)30dK0$6Xzi*oC<=aA=3`kZ0i|8 zwrA(v4#7SS?a!m|i=WSTyBcC*z56qTECwBnt~Ukw`5D|UI}3D9@M)dS^w92V18jd=CO6^2ANA_&?Yfbeu z=o5OS+~1?-8{x!R=)wZ*;wj+CBwZp7X6e6i{5U_Y4z#0~H`wVhIWiDRVmIC+&UWm( z^%CI=JXY2@YOu#l%4n0WNqYZ9JRp=}Mh@)pBo!OU8tGh}CIJPpr;oSn`-+9r-Tr{OPwVxCW>WT zoKv%Xxu3h?Z&(KDCb=|p9HVEs)$KGoDP>87fnLH7KXO0ElE96l!g+mY;1KDX0$UeL2`LshwX=c40D z_pGjq;L}>N`oP_19oNs&5*lXaP$IQ<+0Y5w6Q7!B4)tQyuq$2vo4LZ8h1$b4HV1hc z4GAj_tGu5ZkxWN_L+CmQ(r7%ChrYX=66@}9#H?MLG9?avw(Jjo)}xq)QTcvhf&Y_| zHYwkHUJ=YdK`6(2^3SPSJv!8+x<mY!R} zedZ)A2r)`!A-@yndKW`xHcbX=1N?WA^(l!s4(_Xx`B<}*`gk8zL(k8FDYB_W$%UsRkFJL zrB4xP)L~Jt$#TzFa~A{awS+z0W=qtIi;JC=r}D*d7G6_>bk6z8JJ|t+3_cI)PagzHUsxt4l|3sunLpY4 z@Rp`~xamX1QWud4Mre9v97`N3`FpC;Aq3HnCiH4eJ)>?Iel4-o`UNr>skQqFIxA2QsGw9}TonQ3iJJWqKE8cJx zY5k6*wA^4;32_Pdu` z0)kK=ZqJrYqW+JSnCvO?tmpE4dAyv+m4qD22n^<~tbcnsU)A(?O?gTP)u*XUOv7g3 z`*dK@(sRJQMWhZHj*w+|q_JzM2#@=8ATP4OdY`*}wd`xgA;P6LKsI`l^;J9_5wvNG zxEGZ;uIrICm5N;Zl0 zzjIfd`-i>1g^WhgrW031hik2-ne;n;dct$?t444O`&p>elKFz%ngZ6k@_seY5Y zDy8!7$D~1bnA0KrW%7(RGNS-ZYjn;J#t{bx=18-Uu5ew+LG zzb=2EZX)mg8HJGBVe{8@rR^&VVUms2+BYOltBnWdDh(7_1525*P2B@$JjJ@xMpBD_ zG4fX=M5#nZ)_K>(SiV@MDe7$kjB<&9sj6VIu;)jrUsPya{T>S_$Kx3!zK@P;9p4w1 z+9|!I%LTb_X$f9wItf#Tg4#WyKvLWJe18~2At{x+ykQjBBreowPlsxzq{qXs%wqWD zZtxSIfh|+3hdY#-%O0&vrkX!}3mvPiUvHVYWSa4dM!l?IJdIg^4haD3?xPE&j=ZA<` z$tqA>rKY5eriD})zQdr?`z!UPpSW$j7jfc4XwJIEoYFDBBZ;C+S2WdOu110!k%(&o zZ48)vRXqf=x~97=r$kJe#qA@D_2widi*=D}W>XYR{-k)5XqdWPLX}%T zKWB@fY77_rfS9UZMD_o6NeOfe7-I+7rlfLMq}gz?HJZ{&(L{PA%eKtYnkA{jqeM{H z6r5X){4En^?{ldKlqXB`MQ;8-%>SxPuFe8a*&rYPB5p*T*y|6@&%s2>c5xRs8y0o6 zTw*k*UQIMhxl}=+B2Orw_0V?={sc)Vu%(Bgq5)?ugz8Y~AQh=Jgi?BW7cJvFmCqJ1@@|QA zsD1giwdpDDx~Zn)vOMv@YN_j#gpdGdkk2?e}mUsULD*?$!9jl>6S zOgCtc%e66$vF_#*%81d+D_^v1d?IUOmQ?>fosBtN&|M;m$SNj{MvwjR;K*cQUKxVXz&Rv=&}Y{2XC2l30p# zw1qTATCjS;M`QhPVN}!4x!U;6!dg7s?A0)YIw*3mIir+Pb$KE3y(KaM)y)0BgIJTN z7$cTR%LoZmwO~+~;Hcjzo1s(cO!rb7sZ(`p;TTVf;*DA)O4xnUKtYjbgb7M~7x$Bv z4IZ7z(g>rv1l_PK?8{y@k{SDdXoCx)#{MBX^3#!292y$)-dihwIOuP3QIyd?`Ri!n z%vu#or@|t9rxT@;GCK{!&z;ql)1TDq%g1f&2K{6%X$_U%Y6TKXV4%n|c?d}UP%(9> zMex6ikdOOSRATF5mn)8~mMRG!hW>|s>vO7uh1Jj@&)azV(lmA4QG1(Ib}@C^QYQkY zn%~p>GFtI48e~CJ0ivq1pb50!YT7Gh-QRqSXY$BOtaLM$EMh(+>?n8Vystvw38yAZ z)w%GDgvlR1FvEhqBuJx1R#sm+Se6K5EMkvB$ENzBK4{3kKKVCx-swH9x&~M2=j62o zcFW+BMU7of9TVYvkN7IuH)SFyx$r>+iEWt_UyEy6v;(^y`wOHu3zVT|<}?0FTAA|l zW}i?`Hq3~BW4=!bjJp#@s&t~bajMk8I>WDZ6yqOp@8Y8c8GfS*+eA6z^v=JvDFu%9gRt4Ui4R)O;qu_qa;e6LwtgEzv$P3il+22($8YRcxPQ(Cs=kWW%tn zdtgU8ew2|_gPt01m}I$cjQ=a$M^;3d%P?HfuEfbMsGj~GhuLPZd*ZpDn^If%9~tZc zLKSGuw<+O{{=dL5*vg;if0K!{V zR=5$59Jmpt-yCTHTA^Hx+QbPE#s#Lpoj)a{@O`1h&b*dm)MSYpW47GvKl3LEwXi6& zwZ0@M(3C?cdsW(+k%OqKFjL=^`cYys6in~u{ns+g z!BU3kuxMQ+%VVM*1q))B6CPddZP~YfW1(nh+~)oiER6Ap+u-XX!X|#b}A} zwKl`pBU(somqF9w?povRNOss$PjTT7=olchHHo};8Lnh7E1&;ZOONUl z&RK7UZ&r*UY(|7?c#<9F0(78X{zZkpl16F}9ZJe194caksF3+LSa5NW5E>+Gp)FPd z(s^-t1Bq|ZLCd$ON=F?dK(gCxH_1pU`-iL@`s?$jww!)T!uR%JFo}5I)zFO35m@>} zw8js}MQ#JK$iQ=3Z`!QbOYkNjwB5b`I9FxoJcbZfqw_63zUyMJO79mw;~c56Hyh~h zA0EMeWfAFVbmBKIu9S|!DEt_WSxKxf*p+80gXD>|Ey14z*Uf{|IXqx0@guDIoj5~3 ze`$)iiFE|;>gr$YY;atcBKKN!#5Gjk8Kr})l%41U^)2y{m&vK) zK^*;g#ZB5n^j2_orupo$x%{wmO)(intxkn)X8)1w#rSvzU#-0f;!4-nufGJLXP+E6 zz|azM8Fs6!1L&c4Ss(uNC}CNjZ~S-}CMqOWFfng)IuJ2NzjeH!dMJflK!ByN@Dhbw z3yGY1>nS1q^Z%B_C}C@3WXld8`4Z4vd=XZNhpzAfw9Rk1z4!Y&+(#J3?6sv{Q8=b( zKZ8_{_=aL~Ic!3FuxH=D0Gm(|I8R?u&65A3lN*2#=r)75fkte{%X1KbCXg*fapZH0 z&52&@M$eO|NnSP8Yf8p@a?@Fu+dQol!n}VtUqj6r8EgU{AE={u%*W%ZUe$+(1WB(J zG3z%hEgV(H4=R8{W7cI(mlIS@KpP!zkW`V2OF*8ee=r2x{TsE$$KSb0X~mh^kY3LT z_tu05o%70C8Q^s>GD_jPZ=mjPGpEeF_3;02_6ZdHjd+NuBu(7fM=O?@a~f!FnvJLP z07V3#ysSiwjvm|O#=-|b`dxsLT@GpRftKTdv4lTqvz8LU(iCbv?`E^cthf(7)CUss z-4(^~v6f3I?7`)>tlMVKgyPkvWwlcvLBnPN5#rB^85CBNpl#UnBSWPr$nY*OOtbri zp9g%5c3MPH-nnM~a6Zl@bf5d=<|}_oWqNm_%KxaNfqg3FBIt)J6^zYUvJ*tLZ}cUJ zIo)8YPgU_ERBRP1GZRPpwx*)3R*z<6`<5|8Lu}gkBmX1 z&<0cia16ZHkB%6}%ipHSj}8*lDA5;e*ITczuR{;#Uv|>$Z;LzU3Kg>&S3PAJ(*nCn60t%U{=He1d zLp9pIl}zXr7O!Q@icO1n!H`C_YVVA;w8Yg%-6Tjz4b%bbsXtg3*jhQPLFV)syjVB5 z{9KIrNt^?f=KI64rBh?!2)29hWUE5x-aXy)2qq@dYj;~;IAP7_!S?QAySoTZy5LX_ zszc2XX1V&VILXgfVDWzGiHTgny+Zo1L6ssR@#&!3S>ggc$LlOsr*}? zkPxz=hY^;}llx0WW-q)&ZkJE9{q!=T@i@~g0LEluWu+a+d;x63#pNX;5>j6Jfe9I3 z2B}I<2CvJ8{abgTRaKPyIa5ocobXJ4EC!7_%bEUCNz`Eq3JS~Q=;%+rzP_G*TG9EU zs*IZUdY#Ya=@laSO%7y3%Rq}g3bQCPK3>cf&oIPKy`87;M24^Rb}Dy>nF1V*Ex>02 zMT30O`n(N*QZ~qx+Z%6~QaFVaBp0xM9n7{jA?%p0y7M=(U6<=}d-b!Ahfm(6ZDC!k z6|Y{c$cl)Hh?tLl)UVN{2vF4s8ePe=w4M{7a5lU`i@VIKwukDSq@l6;W=!>=3=f7+ zHX~~G=3^dVXzC3?5qw~-D&ojnd_u2SKYZwUyt@Rt zF>y;azST2mYg_JX_E*YRT=x+-4sL$;QP^)jXu4^MJ3$*-(I6(cl)PUc!fEHqv_6|% zwRg*qn`i=W%V2v|Re(RaXlW=9sE3B_j%(9-h{tx{Ec0-_ClP1M3kl)K<2G*m-RgEK z=U#zo4L?%1V~8a{w-N z@kN_E40F9Ko(L~z3w9@l8jpVSHlSMsQPAP++vCZKFV$21{=7V;?>1%|8=_eZV=`Hq zRR&yjPb)sVBe|uo4rR#7n(vxK;!zreeR{5ZsXrV~^pNI`0sK6AVQ1v+S(S(zGv8a4 z(?4nx0|a2sK=pa|hY9nx?NY-EE|EMMA~xf{!jyrb*eFsRR{dt52({C!i_|e;2ZyuQ zLe-Iqy`grCGoAJzb1L?bJd_yeWyrK)XPy%8979jDqJi}Eg3J{wvJ54K$d)(ngX-#! zgZj+yJ@^X2#LStTb*tq^OWErc^LMHLoUfLnXHg$n%X}TN21nXF`S+K06%pa1R^530 zpI6M&R~rSuaq)}d^fc@xNn6iHE`^Zdj?|{!TeEJx%jYy=oMzs0XNhau>0`R39?=54 z3C-)S!D!3NT-A!z4gjdpMA=JQ1QBME&J#7w%cr!9GFf!LKA?bfzbM5NGBBZPI;{Rr z1^@=IH*qwI&F<$p7CzUIT{slNPcC7fXT6Sj;gQJH_JWF$D>wqKZ^=%a^ZzaAAYR|- zdgaLeo$|3(j9kqWG}M$(^4{rP!8?79S=}BmM#gzu@tiU^j8!R~*p}n`F-ecanc7e> z`p4MkU>V{Gn1oLq-k-jZSB4mhN2H|qcgd=#k0dftoOAMON+nOd=z1e@hBGdF^cJ&= zE=fX4u_6A>T4`cp5>6tNNqPEtJV!jNLcg`YbxQPljznxAHDE_q6d90F7=c?CFXaJzIa7A z21DGN3wPU(jsPr5Twt48=W;0`M7&DIu7r!(q*^{$0$T92I<`X-(dGqH%~0)-l?P*& z@fE5w;oExKwmi!coV32oT;YdnAV6HenMA4cR|F7wcuA5~t-4Dqiwg5PyY%|r%(7X^ zm3*zb?Fj5ldizoDnI&0iUk4Q;Tp!iNyQlG;PI8tBB~Zn`w(Q2x|I+_EGHU9b8AVa^ zailvfGIDZ}`{yUO`HEZZT0vyQhj10CL7J_n^`Jfgik4uv4XXT$&BN^`n7e!93whtC z@#NijhzfTsxU!AraXa%4;uN`(QZM9n|56dT?Am1vSsylppYUz+8l8Ax8S+6w?AiXB z&{iCVJ!KU80L|syHnI(<8tm_UQAz&PQ6rS*PYkAi!eiUVwcinYYVCcTsKNVyYe+b2 zqF3z6Ryo-kCYOR?6)5VM#KJaoc(ShGIW;k%CK7!N+1)Q>UKB9N>W%AbuRaVLA#IJh{jcI53+*@V|ewTs*z=o7n3fy+h3c$}d z0-}0;e$LYXkew^S{;k*=G%_D*|~A?c>zumaL?LpykXz4vOOonq9V)eS{M3VE!XaX zZjbTIH0u~=IxJ&^=*FlxInjuMtou%43$q@7UYI@k3KcCc4GA_;^qLnFdDtd-1{@8M z_Bon}57ylckC8O_ahMiamHF!DwNyIkmXZd@DvTna@|qO@FNyJwKPA7>7Qli>+96-EV!p-!ynf zwvn`3t9i7!DD!>W6pP}b@78tE&POulrQthN&;_f1Z8AniJYxrSMK>xop( z&`4Wgm-Ii26EE~ejHKjY-pzB9D&2O5NUhlR$KTiary%lqDOHAv-Q%m?*-O#pl%rJ9 zjqm7DWyTD#_*Vxpdx7N6{YO+wils?n*ZarAgW0mKr%NW%(3-$n(e}!n+2I}E$`cUx z7;QSdYxK0aGDYCj=(@`}KC5geW~YEjL3X9hFzb2Ues9@(a1a*S~)B z+I}ycR?sid{3j$L`0k2@7K%5YP7RyFA%8tC-0@*r2;MtD{=qdUC^l@YQ~-3H=5NW) zK_FVT+%!X}_HcAaRH3!DPjT40Wwtxm4Vf1ZF3^(?0kLXc|7Gr-ri-&y%H-I@%50BX zCBbuJol>{F=6wSOpKtV8&Iq=-946Z6b_J2t$Vb%(*CekUa?BD+WJ7(^6ld?RCUE>Q zK$&gF`{!v4-&?E)S&A_>*=YLA6{MRkp0ko#C5ehT`PS>Bt`~k~>=C(u2STn!@RIUB z<;V?Vo4SMWYeyMGE>v0^k8qiG{^f{Qb8<>bMCRSA5D-|Y1Tx0k+d*Q{)m@vKmD_Md zC^c~WRkCTR`bycUjwGmF45iXw>s#UR%+X-Rl?z@Zitz>V)kg_RO*S=GoW~*&_KLm}MIRKT&1ptA+ zKU{adtaiTq`Pm*4(%Ji1V}1(qVD$dh!25;LcTld3=MtfOa(@1%ym7U~`3~IxzE<_d zzT>U{XoYRi_LhTH&TO>iB2a0PhS)TUn67_+)sYB7A(B#wBIHro)5ofbUg_yEW?@RW zQE$BzHkEaN9@KNomfQg8DBy!0^bEI$6Wr{Vxo4YK)>Sy;*M8l=GxM$o+)SWQ;QW=DWgnBa}uwc zu|`Nc(xBUWXExoD8JYjkQsfE~z}SsKiIO!$93c&{-psS9GrgZ2qUgPC-E8`Vb4=E> z5E+aeG(fJe_g$pnVyZ6{i-ga?)y8t!#R2*rhroq_MK?hLdO(y4j2`sfRXo;ROsO{f z3b>4MN{cI>opTXkzpI(qBemi8_TFp5O{1n!^V&?96-_)+7%}VQ6Kb*xY?7;Ec`QI? zexJ-+Kzzh?K1IpeXDeACzgrclFNrdg%8GyYOV+g(VuOqET&!W zgOysc|cjL^b zm*I9;753l=ED5+cB^96i=&!17+@o4GEPUT*mLDuZ=r&HX#(8h*6k!a#Wkxdz;rT?t zt_@Xqm;1l(=<;cPt-xti{EBzUHky6hUu*QUhs`E)Qg5FTp}?5g$1JGr$rA8=UZzSd zxTxF9q~(0;!6<-e1{XK-A>X54JKlBvW4WSbO)cp`bH@7u_&dKX+!YaP@pEk4Ukjv3PkjV82vJ~07%Fu%qUhtO3^L&$r z6Q758pc+eG5d-GtnVi;w*mBWg%6%$;4LZp(I|L#rlP%T)DAq0c9Sj)dSB~c?oV37n z3?;Vos|_s<247lckz0I@l2mt=kBJF)a~cVM`hQ0$$gYR8+_2IX5ud@bK_y zoVGPS3vR0(=I;l}MrKPj?+h$B!JGZa3_(;tE-qO(J2E2MuFhyi)|*1ME(_v)he`La z_uH-V6-Eclw_I^5Yy;_#TWu|>n_bfFFL{*@1jEIdsu$>T(EG9uO5GPwC~@_IE4ix;7_Cu`l?xP4KdO`WgIaRf_v zQxrD$2=cbr#YDeQmh+O5J?pA0%tmZ~E{dl_S1-~O9(7Kn+mzSHrd{?P+;nlJ|~@8bsiOL z7vOh>H9l#f(3GB-u4`mNrx?OEdWPqUjMhDno@SQ%R=0KKILK&b?lTkDqd{%=Ba{n+ zXRC2hGbh6jwa|{#@J5AWY-TE3r`r5n>>TYX^TV-Rv%V7b1b3Qx#ZTs>z^N%j)3_Ba zoRRg?IUaZs46D;O!Rolcp^j1<@#>IY#>qeAm%Q^2<+l4B_ z8+B(DD5%4m$N$MhNnE^+mLld6DCvZ@SG_HUg3qp(>?I{6rqkQ9Sn(?__SN30YkR%? ze7bty-WeqKyPm%O9qflb zJ42$KL8V$Lk?JZBIn;D-3{2%pZE-t9_M75K##A>%gysp$7LD5Mv9toN`&!hBk5u2A z9P~H#OAkgGcGRcJxfB#rIp*%1Hu+djch1(1~|bY#|;XWB;^S}E$e^mT0nn!ci zI(__zltUidJklX0GJ0u`J+lvS_z}-sB=&~gtW{flV@P1hr7Fa6GV*2HRm z@}n17|z~~z=S(QZnL8U#9w&~A5e2Eg2)t2-x4*Le` zA}=;opCOlp#sZpIXCU8_wU)Tm!${O+hw7JK)&iOpwrAV%G^-Cit_N74nHNVgpT$81vQW(X%~S`g@lbqHBM!_t1C|j#54a}SyB%|W{I=)uDx*hJ5WYso~piRYTv+&0`hrG_jAoCo1B%h@AElZlV@}RZ>uITaW-AWcmH>ozI zNf|Tt{I|s*HM=CgGE^G-kX~TTL9ke73Eor(^F5Ki9KD1$PtiTHe)h=cu&kPwb^2hq zbv-*1a=36JQN0;w=;JtLLG7hhzq!lFeK;^DznK!OCp%yqaHY68n*r%&mk+IV&l!~*v~~U!h)BQ7rl6SRP19vw zXj(jj9h}6DKLoL}Othn3j=Y&=}UpvXgIq7)%L6HC59d4*h@8#3+ zjhRHI7cvf@fy3H2u}IzlSP>ZwMq~jww{=D)(_&nPzI6V%<>uchp%DnAw~arYOnSB%fQ*`X7!>d0lS@(sd|gBZFRSVd(UNHbXl>} zY1v@kr3Z}+o?EVvf9xCDF|XzOnHYh660Y5%-S0Cd=xOb$7u=GN@L5&WhU>@m&5id> zIsP|nn*uTp`Px5(woc)l3-iZAoMIM)N1Bf^Gd4sAG*ECixulr2LKg3rHB+0KdjGrl z*3DG)ZC493YxY?56T_~Uhjfin5F*!o1g`I~^@Yrck8KGj*gJX@UCu=sD|&Oo2w}$L z17>!3*5SW8Ui>&vWqs%A7}Op2DCvy%t+H(zA*n&YBKu*FPnw-2@422y0`NO< z*%iTA5_iI!D79%eB%hzXriAn^ry^`KYO@aEV=V;72EWzr;z~OWFQikqCbJ86)VjG| zS$fAZ38f49K5s_(*RM^GlFCX+1+T7|Q~kFtw5pV+UYon+)&!g`3*YKNkbi>Uis{XM zmTeO8Q8Vw;ak(yyof}F0QOFyEM8bx@*%}K+n$#pdZnLYu?Y-(fZ~CN1cp16_w?hNI z#IWWF->Z8Yzq4Gf=j5dExeqyjA4UmUny(k~R2T9xV8g@0!Xj6t>^+OX-(KFJ`&p5!h74SyiF4U$vJFfBGV?j_!vW@lk0G^% zg@xuOCR@#Q?D%&_kh*-?B-g#kE}+>1RPe3m%Z+=ieB3vBhJQ8(wl?XOfE-0L;+ciK z8_W#7lS)BWp`bPl0>64ORW)W%nZtrR~e2~z;J~^Cyzbgri{aoh)Z&=A@S!zD9nf}L#5eZqDW`-zTn3c?VDE4mgoRLV;Wb0bY2Q~b=?rF;% z+g}_feV(o>NvSQtXFSqs29XH1(;l2k?`3AbP3N4)kFi?ZFQe!Wzh|z`n#mSfFuo~i z7JG!u9M)wyZ0?5ouK%&SwuD7yClnPh2S#NJH@iipdZyI>d_z?0sN~wbifM8|6ou?I zgmckpYu2KIiw}OC>LZ(yq-~k=ePK-{3RgP1U{j`>T2I{_IPy-G=CxHl726j=4A@UF zJNFyD3um*4h6I33tCreo_g50{PiPzCzE#LZFtlX!3wjs8vbN#|zF1FrQ!^&@aFFQF zGG5XNsmP+%+KWjQU@Dcyze#zn1Lx*}gTYNRIkJz!v5j-+x} zoAktwr8PbRGw3yjGLIGd+M1Q%VzPu#CF1U{5m|19?o5hyE$rJ7sJ<*;>@E*Uj%`}@ z{spg*)AV2CRgd~iE+n5=w)tEJjm)%sh zw~ws?3Vk+0?~-b#I60L$Iei@vsj9Pn9v$d|Wd6!((-4F+rPkj@sY!!T)+x0)+{X1{ zoid>NKt38QO&h7u>l#o1)jEV|dy1RLP(z^)F7TYL7G|gWmb=Os6DNs!3o*Ebksw*xnwFVLs zU>EbxxH^q?@`*s9K7xQNa#gdM8?E9he?1-zD~kG;0xd=pVacS`kjzBTT#*2cnST|m zP-0nG*{%CXi5u`=CJwRo1eT>e;U-t&C{IsTT7elld^9xS?j%N;G8}FrbmMfJdBg|}@B2V-9B<6J{ulDzGpfn%*&DV23Ic)xN);6l z5Rfiiq$s_HP=nGt(jhdJrXZkH>AfWcq=X(2kRnw|=!BaNfzU%Q?*-oX|D5xG-VbN3 z_q-pT=efSH7D@IsGkf;z*|TSUL!Jw@rk$nn>Ry=Ac|*zmyIgSUtB@GC#%;?Y=%*N~ z3da{WG2Q!kGjTrs2$?qF5B_I?AC^7Bx-m9RRMk(uyrM9^+$JTF2SUlpPxx$_+pxC5 zrSf8d3&4~E#320TAP>cW4@tr@r(?zb0=GG5!Gc&~ZufPN*jFoR;{>zg1=f_XFyFTL zrQQY^h1#s=j&I4d@>pl}L>VbBm)7#Vd+^nD{@U`D*?32LDZ~k@;I^czGFBMgcQ46y zD@9|hxLhO{ILg+M7XvIT3n38MV0Cv-LU|(I#6QvA$Ru&}hVTjWN%xI6-yLhB zW~0=IRiRC2p0QA+fvL?mtjo$tqHG<F5oRc3e8K2&oH z>QR7mx5&gRI~_|*^ICU`7njf7xmZPTMdqrV^lm8I_?g8K{RGa;Z0!r4SgD^p=X_B)* z8in}KwSLO%$DcKuujQ`vq)JGw@0o_vJc>ONU#=$i^Y)vm7?zwEJFaaAIX)a7F+QF$ zGR!;!@1{`iq*XcWcu!RI~DO*@D!%tH|5#x1d3zWl2mw*RGF#XC&EEcrqn= zIgr5j_>1X5k>9k&2n|?+iG07fkw2Bmc?qh1i(b@qDU7H75z71IFuWy)jS0HTKdHQ-tUnK8E;_1$qMuwiAZyC4!8=9g+Yz9`(QwvFs~*0a;q@_m}z79ogd z>G+{PY6y4tQ0pjTDweh`fAt4J#Z~G$5kId^oIelE$zT_Kma<7KNkPF7i7~rZ_(Q7& zjkqVIO+T3)!Q;4%MD-5@k{E#*U!(++Ww!K+777fzr!Z(-?acCUmT$co#W%b8AXL~ZfGV?F zyzZ8Y=uaR?f{2V!x6TXz@bDK0kZ%BNBJ<8T21(~%9^-{_|~WYPw3N$rnE4?oZ)vAz*y_QLM%JoBTF2hX_;Ux|4@1cn}E zf7ZiSzEQ24&GQ#ZY=EomXEbuE9#5qufma#!mU$4Y2&+xBWAkieQ8xD?ce1IGm%p1p z-$Isim|bbV;&dmABkXQOcyq{W0=mGncFj#iB3p|ssdc%IXg^)|6k>-jq(fcpU1kz7 zZw}tp)pqF`XrSmtd1I6nZ8d71#)P)4HCgq^Sy(Jerd;aWaDe*0ii%Rs_IROp3}^ls z_o?o)T853lIE8dxe3~gCU8q_kZIh=8ZTC|#0sT*MXr-&?$z{Ot#b58k>f9f>Z9{n4 zNg^>Q$fX~%MB0uSZvilq(Xxj9odLD8{n<#sKqzo70tGfeG8zdf>13H@q=5A;G5T-c z)hQC?K-`A!lcN=vn<`H7nuHiU{qa-AKOeEti?i3Y@!-Uv2a#nos#@C<2QK2jV+@0+ zXZ@Pu>lS;Hzcw!X{*G-|Y?;yi4}O~Rp}k2zYB&1#pEmidhHzy5LeL}QhdAu|(?{eA z1Z1VHFO9!7kRaP;$NMnpUyO86w#e(SC_qY`ehzzSjx8)?xPJo<=%}Y4IjuH zzp6?C$2_9#>WLaN`t~h|?ae&(^6QV+r#1K)Ri!4wMlw`f;&G!8VE)D?tE#c1@u(9UREX zr0Xu^PJEzL>vPaQ-Tbos#`FawSlx?5X6vc?bI7WC*Mu+HP-7E3`lMrQtp7Ag|TZM@dJ z&iCZ1MrifA?>+`28k_F7to>fnYX?GDVX>GTT*OrO$3>|^?OXO-3-&JvHK=ed&E%v=k*}MPsA5;M{4^N(Rd?*i8_vP@? ze8_rzIO{>V@~xsW>rkw@Jyy+h!>#NymCvibFA$6AYTBHiui`&aR=>4Xfu&IP%4(JC z^*rfk@w=uNUabEqMiujtHX&RX-J^Xyvd~3reT#{S)+qZ}Y;0s$>3n)G&AsOYzmofI z@XgTZ?XL`ry6>vt?U#_d*Kcs$OCRdLgZAFFv%!vPcc4Ev5}ShXA8WpM5I17GWUiJp zK5Av0V8$wDkeVj2zQDhVZ;ufr=pdBQxs$iC1>5*o!8H|6<1ff>+ z_37@9j9*w(~nLB{W2Z401>sT^YNLI@?ja&_3rGve!k!drzs;y;ejPYWGX`1k*=SV3$)Vho|?%y z5%UxiM_SSGJ4BOfB8nSf!l!;A+3D;|8qZog-(L93gWx&rM62G_gjmZCxCp;zD&-R_ad$OlFfY{^}Zx@?{> zzd-+dGShgt`F8rX8)n9xy6u)9i?a5h`ogrx%ZOIE^Yt7qjT7+~)P)wSZ7;uauiaL) zptKN-yOm*MLcIyZfvetr7j<+J3p2gmK*`Es^LTqB`Qgi1kVs&ET)rP8Gl>rW?rhd8 zn!Our{5Q&Il|HHq@`ibS_Y*gKrkhe(mD0i+Xnf-~m0*mQXV2HHO&I+PYb9-|$S(x& zdqHWdec3Z?B37hi1e^8}G)l(WFn zUbcTge?HlN+~4Bc^h>#^u$A(Gwo2Cn#zH1?8Zwe`f7BrQT40Ux%d&?L76kZZ|9dx_wBhgA*b5H=b`sfLD3 zLdYV$2yJl(b4-OSe*3!K_rww=Cb^m_wPy(m-_W`*0%8BRPv4CK=&#cOHO_y4F28(X zM9ET)C?tZHGUk)0E5E}6STgtDTa+>ap^}U!JqFp z`h&=VT?UpA_xd;18}1prbV&+&y2Ac_IQK?*>1V`kvz5zUzd<759}Oj@WQ2S&2Tr?t zUWwhUgqFhv<|BzD!S246FPXa9<9ewKv}drlnAn!P+0<#$zg>WOK9AZ1zYmeak5xyI zO(iz{G<5G6+UP5C?@#q-d<}Ac_<%grMRqX+VfG^V0Y865#4X-~xyGK@l-=rqs1)jM znnbn#5cZ?>;w$7qSQg%RRyOdf+s@mUJ->j0@;TzK<&-GS9n5{(ybpIKmCDys5|SCZ zH~Oh;+qd=KejR`{A188-qQ*TuIhcK~V_sKnEAQTcrBE%BWQO0KZQ3pyp1!P;BcgK8 z>Gsc5!n_+!t!(@(d=0fcj7x^2-D>6H)o&m5^hVybqKD zrBA{1+DR;J;R3Jk3!rrGi40>gjyNj0RJE-#4l%JJh^sK=w=WDdQ67lsGne@qQ8`s* z;(=!+t;uJ%ci;8i_mBKiI;Olk#``{&A-=(WtVJJhqgtM_VpT!Mdi1)glt8@rIX>}^ zWHrT&2^j4_w4)aCWDK!vTP3i15eHFAdP9bpS(}$Lt!!qK5|<5aKh*x~7Wtl%FNKbQLU z?Hug~l#4FW8j|-2VgU8<`aaBhas(rHFB4ve^9@f4G!%T{ttLwT`b>(cVVHYl*eRMo z;z!&UA_!G{6>BezKT%_)#50xjJrbBe@2jxeQ=g@`I3GH}M+%ZDmrYEEJ^Tz4uV;1g zMYL*x92JufBOcDap1bZegbz6pHn(*R{j4@l%V$!t|LqYISUjs5AFd<$s~xj7H(}_Y zfDh$la{|CJOUPw9`bKw&oM^uJ%W9Tz@KZvG^65Vs)|9-2&=k9v;D-`;6p_To&;)K{ zq6!X{tLr2eV7CewV}cRej1N8~{9hfm@Z&GO;l)R6qup)z8JAMEG2oW^XWbv2ZB`G1 z178M*yb6Nb6?GT?d{Q;+M9Kdt5x?+d$!oe1+_JY}Q^CKn{j*}HrgTx5E76}b1emwe z)($cx1MlT-nP7gE+*N9Jdzh7KcZxJ(GATo{YQl>mvz;P6fC5 z!}6ZX#A0r5Z1Wg*cHc!t54WtO>ZZ6Y&`C@u(fm^Sqmgqbpyze&#GyIZ?rQjt_N(?z z?ZdESpBFPfp+H7KmE3`0Qs&ZJ#D~?N2g=-Y2_K*g!UvKetL0V)%N0JFx8O5uiq%uU zXsIiA#&{d^I`p!75>+w}UROco4+L$PyGADO47>p$I=ZpkR-GR}9tv@b{a{p6M-e&B zt~n=nA7;gMiFkeiPahX4cIeM{E#*VVj_d`5_0=w;B5YHeKO@L{lnPP-RnEf!-EJvUw}2JaUM0$2<2`ea-MP?aX-M4g*(u}^}&-ANzlIp?2p4v)oo z6hzmR({TxNnptN5l`@BcmNd5`+h=E7o`A<(j2Evm2Rhb2;<V~w99jxW zP2H=rHYT?DU+J-nr+2#et;8Mmjbi+Xmue`TJ>0V8cbsE$4sr$k;1eGdO&dNAPXISw zfk97^*7M(4x#TYEj}F(dw=+MyQ7@-+%KeVvV+)Fb)w9r|t!)Z|Rq5bJ{1n4L)|DLJ zvXY{^GL)dEh%QXv`A6T*Euc?PhnX!*@&GlJlm_zpc7_q=;`RAJH2(arIo`(oO;61k zRYu>Vh>c%Ic^IYw%cpEUQalpyRwEgQsMh3!r|UgxXWQY-sKp7cwY z5E@+?+8^ZhCC#F9dj_vsIPbPqf5viw^ZLlkpXyd|%9Vq}cH^~29V?Z9#{F6ZY(S6U zn zb)rYYBO-23VbcI5a;qCzdwYq1K%3{>l!{~ilcV*2f`jxw?e8_p;@8ghm>&J}WWVH* z#ydTE!^bS&G^=_1!uZ2vUqDy2Fxu;-Z#R3bcT4HHS#VoaXLC(^3vVSJvAg*S z?@GN|Z=G8G;eYRfuNF~;Z+RR>0|IJiv9vdqc~uUyP}RoAsss$kItA3NP%AcB$0*soao{FK9kdD$DuZ05un9as+%hs74`pa^uev^D9 z$+|v0bK?!0U863lhC(YQB00shFG5(JmakJhGj(XvL(|dmw~D;=Eu=NPZmsfd`wO!5 z-i0I?M|aX;d#fKVSz4yek9XnD?80aP?68LWd*H=vy`IbPCv}-Q#Y}7B3kDcrcSM8B z2;*(X#++Cs@1zFEO187ona~Pc;rP+FH=9+blef(dlD|`Yi0b;>B56IRsI}KPJH)6e zK+Dwy5ILiG~`IZMBx65v0KN&FOf55RL>@}vCjnGfNd zD~x>;1cQ&(jU7e8GKJeo8mHir?)5fSUXlPX{cvu zR`F|5>I2Pd;#Q(3{>E?JR>Zgm4YMJTT^0X@#P5gT+ujjo3IoMA_-|4;Zhby`X=eX9 z@dtV1U)0Cmbsy`zbVv86$1GLp`7Lk<;#O~!_`a~LdTgeVoT-_iXRJ?RglAgI`q(@N zuKdmOBdS0wsp5!mrIS-pMNdzbMgs0S=)2SqLZ|~f2ODOfBaE zxm~LOc36NG$#WMUJ0%D3jE9bHwxJAH8Oa5qE-JasEPgB3HkIcydFLpWt;!73Y(;Mn z;=>zTH+odi?RWhnH+(Z8Bg;~ns2I)R$X%iG9fLawnbj$&^~>AHqpDLeUg00rYIja* zYxeEa-xz+Vf{j?u$nQ>+-_)(=4f{+ZEWa;I8o^n0a&@t}A*xAu#O|RZHZpv)FFYwa zgLgqWPP=$hQyt{kznXj5gcIEoUgBMqEFnJJ>-H+<*;UJjSwfrN=e2I{>wGD!y07NN zF=9pNKhKo3Yj=D*tvo-H|H9Dq&weGA#j}A4&Jh6Yi-)BDe}Lb8@K={=kv&Nzvx!ev6qpR$I_I)0yyeq&N&h z@*ReeBDuR{@itK!T_x|{ zkbD+y0hPcJx1;_jF?X0uK>`%myM|gQmn9WP@VS&LlT{)`M6U9G-v-Og3E;Sn$PH{ z1UsjSjmdf3*^D4&!a&)-g>1i+9A%L6EQOJ~g|co}ujh2`@zhFAC0~zobQKJ`eE8Si z8QS=()v1xS=1{%kLyMbxYr_F&HVRo#^s8lx!mVI|)R_;i0FrC_o!cxa4cgye!%_EtIdNn*b!qbud}GEdFrx%kCRUK# zdNm3!*+W{N1~7dkuy>zYOx)oW^G?bn9H`EG?fxQ)#_QV}JI`Q@KYHaTzS`r=xD4b7 z(JqE2j!0EAPkUFG8+~plkXY`LmU7nIwkEmka4lCGe&B^ zhQ&|5UzsiQk@mEl=T3obbV1Db;jzHwXKOF!E;{3olIh;6IJeHJYF)Z!Mgc@Z`o-lj zZxl8`LoKUFlD(WxQ)CaXpHirag1(H=N}4>Y#@xk>`mdx``yE#j@0@a24J79K$sM#% z9Dq@#lA1`Z^*MM}A+PevfW_x+ z%Ck7#F>1l8g3@T@yQmsCv!y6%?FY|o*05ra_F0c-6XLb(?(R&(ekR2?l|r%MlQo{w zrO!rGvQkb)_h>N_{OHctHN_si+AjyvF zsaKBMKNKLNPxXeq%zWwy1FL;ee^+MteI(Ay$u!1at6FT-lNP`8D^VnvkwR`Kfy*`; z1Opp8&HuL8^Di1zRXtx@^>Ky@^h@;_BN;iq19D!bzS-O=tX!zvRpQnj-Ju@w+~ zwQ05<=~Eov|EXmriOF!ZQu(Dx$kjjA;B#@^X=A}zpnp#N>veY=dW|M+ zruQJR1=2_DPuJM6@(!~8VE1uDQF%HP8KAy#X;VUu{M#vStx`_f>94-w7ku0XFTZ?$ z*J~QsiROP>;>q?JO6#_xfQ9-Gg-y*-#+`}leW=}DM=i0PdITe(` z_zHhoZ%z;QFF*C5c#Xnx1+#mglkyt6gD?D1ZGq*Vk;mlANqNr3$8nX$?hlzI2-zKB z9*$UuyGwkY+r6`&47w7`KA6C}=1iZe@SOvt+Sg_O<-yKGZRP%ltNVqq^?$(E{r}gk zW`*q;UtGRjVwAfGDFe+cvdI6mSi0m19Jnq3$}dGq{^>Sy>90PbKMk2Ki635^-T*w! zmrQ?Jv0U0%x_Z&$=F%lb-~WNZwx7dTXKZjj%&~H)OVfvNdHjzm@ggbLiFc-e`N9e z>t&$fggR<3V|~@09qho@zbAL7lqEN3_O}?+&Hj+%u#3tQJ1Bq zQzbRn`+q2q?cKadPX0FwsqfEa4Ec3c@qD;xNtlPdvvRt7d~*2owV~{W`Dxp;H z$&bnBrgRelnVM$z*Au@Bj-yMVWxo!#O5fo49 zM!ByDI9^rxs@khlNZ*fEPCakxkUsKfc5a?AQ8KD;Q37Jv(?TuV(G=HoGIO&2<`>s{ ztd^lXP$^%ivVa-Pzhs&A*a@2tZxnkHC(AxMOnA5MLDhXEeKP&pydYO_n0{3CWo+tn zAws(7vWB=Mr^tinp^ie8%&!rd?@h0WH&g1icMp#Ixt>b*yn3M-1P{G#h$I9b!65Z{ z(!|>Rd3CuOC|Us>EVfcdBuv;eASIweakB9BO;uukn9T#04ufZpKd{@~pp)el3t_qb z5NUGdrslmr-254l9NAOC>x2zsH(TWy}&J}hmWJJ;0Y5A|5K+fA3J6$W>BL%iaPy%7CNGof4ti#bpdlxT&fC9XJv}`sG_2pZ zzZ(Bi0v4fe4m5}wBs@bKYYA0;w=KY|R~D6Z#R#Z87HxdwO$uo=A%8lW=cRz|bl^1@ zLA{1SqcayCWp8oS|DwPIi@+Gp-_b&G&cy_1o&3llmq~FXKB}ie#85$HztLE9DB?v$HcOb7NeGD|tGt*PxCA(5{xX86{%=Yd`Zp zTo|cHpewF`m=A@$u3h6$wsOmf@}1k9siYA^NNq zN)Y^sXYG8e`H^+~KTJ?0x`pVRfHP`3^~@;=!;zkCj`E>L>zWtgC-^tk9eJ z5DD3*|85Gw${F(jd`=O zX{yn_;&}(|CvSC!BZEE8_Hn7qrzaK!H}{<P_!F!yq`ebxN8F=zr3ffc&5k3xUVFG;Nu;mwCdTZ1HZ#S@Di}6=aXCq#H&6)aB~u}Cx0S4dcYefh$?w|m z<~pw2xH_gr|Ci)w-at&Hcpe$<#g+&5x5GfNJGo!&)XfITfsnlfs;7@lhGH1teq-C6 z!7+ghc~Ph0?tk%!{1Kq_-vZ2bKun(!>jGN?6U|g?SJzs~_+Wuyu3L1Xujsu)cbgrZ z$Xq{EQsffGEE_!VLlS{m8MkPzXc z&${)=RM(B{#uU~gS2EhcH#2`ZxUfZxBQ54rNo^xmM|`Xn7e0EG#rcaZ{@l!RradP^ zJoGsp%lsh&`pF~%3PwOQitK(l=P1Sb;k}Ofiv{xa>)ocV*J79b8~+J3j)Kn*9Uvv1|rCw(JRsw``U zM<*W$G6qfv_eQJUApZ2HilkRZK|j9EhrB=|Gc&u9n4|k_1Fuh7D)D<3d{9S4F}hg4Al4;(H#l)E*anw0;$g3cc)5~@8XIIBEO2@kZ~J<^Li(zh@3X@3 z&lC_Q(sfm6e4grnkC^|nx+6AI-%45TiApbA0;;6Izvb+3w*Pm*ZEyEotBLQJUa8_J zEy;!Kwrh9mnxf4+lL3dI=d$g9`FR?k=i_(S3zI^5R)UrAUC`!PFPi6w^P3F^+bN-T zTRC~+{8481A;iIlXahkQroXz>dmHNzzAAbbw(BsQ4jw<0WS|YlViZ9rrUsR!%9X*4 zl-xS>X7hB4ByAtA`O><%i{+|r+0NjZNhA)lxe{t_>`U8^L4r^8mtS1hr?M)7RvRuNbg|@BtyYLRl zng15?OoKLRxY(HF__f&{CRG_92gP>}E7hNFDVbv)>mf8n7RNyP0!4i_)^5TwNcUiD zsy)`rTWA|M=^*O?)t-^VdVPhp=ry{%P{86zOI7GB1!87tFO zyRPj>`9WxDP=|{xQz8B*pzYjjN;+Y?{&LWfJGgX<`*x7JfTvnmsETTLhoXw=$4}Qo zzbNtoKAT9PmG*jfwg{vLNLJ@nU|-f-W>+Y&ZEiAQ)J{t*W;#Ec{E)f+_nO(~0j-a0 zuHU>nR;xuGSsJU@pm&JWEJkU<=HS^-TxT3i3t87#9cr+h$S^jz(pRF;CWJQ-EW(T; z`+ksd`G{5S;3j;kEW`RxLt8|dR+DHrRBk>7>Y(JooJMO;URJMjaH@8{mCE&jOM>0G^}?Km`a-%@Qd<;DTQ z1-%b1{X=iB_WA-BUG0v|Z~?fM@oJ4WT&voyTC*ZYG0y7*?d%v+Xjrd3iJdp39YMY= zn7|-)#;K7>f-s%V5+9Y2P&@;tK(SG^$_aK-Ux;?F0RLA6SBR^PNOnMmN2jQ7;_%ue z3=$R$8W-}wt}XyT^8o~9QU_iKCR6V*sVU+UV>Lq7m~v~9fDEqzJl#;IoUT$oeE{eu+%TlVurru)wL1>OMb5jNl>l-%ED=c>mmEonT-U0`?cfi5uV((x%r2~-X#z5=u zQ)=;U>mupfUns67A|1B+m3rfNw&e@JkV17Vl9p_q4vm)ppeOW)?8bg)s3Nzh zrhJgcbS#{)(3Ukk&0}=ggAs--A zIZX|zC>JHy+BlUdItidpS8lg~5D-RHD5DN$giMxgRrNB9OmvR^b-O1fJ1$8;)$V(l z%iAZQ($c^p<%kU-PZfitJ@Npt53m6H}2(yfWu+8uz_UR8dQn$O=Ezf}$`r3WRQySy!T{_Ji% zn^XCi`ObzF4BV~vl!34gz0D=%xc*+EW3=7^yb$ipV$6P~|BKdrK4}n+#cGzhmC?Gv z>h*G(ICsq7Z^|at+5RVAD5TIYgaayPm+Y~m$2CWLb>P#uA3@J)lc>t4xHJCqGIn% zFJf0$u{6}tcA382?$^y)t|bEShUKG@pVASEmaNdA>peM2WSXYAUUbQ%7-@Ne2ICoox@sY$M;#T8G2ZiXnkXv3F4a0$x4JRV4#8dV6Vw&#ug zk%qs(N)5YPbj9M9N3BYZbz6lg_P?lm1d|3U=mxV+swgl@^<>tDWtwI3$gxW6u{wkn}hO#3`WVYN)P+~iIxITCo7l!UHx*qg`px99ZAWdxLEqzt>wkT0<)~w zw9wyN*6p$SQkGsTI-K4KOQaFz0dr$5l)_rKAAI<>i%*D7zs8GzG5pjXO)T0vg$Mt6JEeG^tT`9JHY`md ze7A$qN1hda9#-pV@qUxJ3J9TYpxN7CZl&eXSD8beL%cO<*^uiig|N#&x#hYG~Q3#_r+olVQ*1)?T*!C znc7ifK#foVxH{Enxiz*ES!jfe@Fl3#EUp7tmY966@-Rg0-3~ zohZH1og^0fsYmD|AGignDALg)-x%S)S792AA1$@`HCNIsS}nM|I#g~P?`|4Gn#^yy zb@*{zGWBTfH%6HZ)WnADY<&}L73T2S?LS~% zuSa*neFrM*M7vTXH;2=x(_S5KZ(B1}3BktebCky8xYz6rkj&`u8jx0eYj+ae+=s3A z7R4VDY|MBvhEA<*E?*p1l3Ipxr>x zWhKOlo0DUIGeX00SbmZY?XaNU`fIuyN>+iO)%LK}Y(u^Ycjv}Wkg9UgX}dX>BkcDq zjM}z9oN+}u8LrK=yQ(10!6I##QFLN}xKZ29wfeV1*<75|;rQiURi;Sx)2j_Bg82BH zFxAy?k`%rSw`fB9L}BZJQoZO_QUd}0aytjBiTn&Llqk@QIa4Cgjv(4*V?5h;{E>@SLq^bCcQpmP`aPAi=#rX=rn}ePLctB zxb=E}C8!w^Zd(b{tniYkts%>yML%A|8X{C?6A^T1tKssvm)kY=MgTaTvz2z1W)|%( z9v~;>czdpNO-3;$t#YgFBk3CEJ?qr$TYixj zKI{(ZTbIjs0ymyhaDPy#xBeW~PH#*QXG^1?WB2|1%PB^v;|~u8$;;+{!xrp)&l%rN zH381qz)}ts{NpG7!@Rfugcu`(;e?og^VE(~!$8|%v0@~Sr1-$86fG)|H zHAqP$AYJx*JrK$yMIO5EdOVR%;lkFCw7=3zLw1VaeOC|SjPWS1gllB!geM|t2jS!C z4k@%~xTsEr|00gUSq~uilIOR-_mhj5CX{AsfAeyRXeIV{PLB6*9IjTtal9|bw2f6l zlonbe(ts`qGOiSYAn1hPpb~2Y@gsLq)m?5koFP`*wZJIDD<#yPR@-_!U7t}MMqu7R{$ z)&w97pt$g1m^K3F_NhXNiekqWYwyloYO4c^|v+oXUW<9B_;u_0m@&dN-PZk zP^fVa+r9z=cu{J1ZMoap0(KCNblI~|<+9PSfxt~%*g{&7oB{;~1x^TJ?nfV1#wzXA zkuuSVsog8PcH{ZpVv9rJ40MB@W&Lz&XxP4Cue)mW@lh8&zvr6g*{JE%0oT@1gWnN; z0f6!1a?pbR-9 z@5)1vXwBe`olc%dEh{D^$;}3o=YW0 z`NGg<>vE(Jq9e|$3}~~F(^+?ri=&HO?f4`MtF)^Y=G5Wfj6V-Ey$iYbpCU!+9-H_z zbcQ9*UXjGO+bX8UDBc1mN;l?a)t?~~&6twpT`i33hxvu%A}5pKf^gg6I%)H$x*lYQ za1jWT~dmxTGDt)fn6;%b`fsK83-%T5t(d7iT=I6P6npemFBb z70)$R@2sb2a{TG4LU;;xFn>+AK$AeMHWUOC)kZ9+BcSGO9PaMB^X#Ky+Fv@)8xsC# zzWL{na1r_cUAun;v$;G{QtjPl;lN;|?=9dk+gIf#W?3mjDn2HJog2!R={&?4+Em)9 zBc<`q+^S?M*iqp^je4i*w(a4~hK6Tuk~M>C{+RexB90{LYug+eAb}ki~M2gW+qhqT-`u=0j&9 z977^-^QGqsyz%tvAHV)0Vzj?d<}$RYzOE7h3SZheYLKWuN%B2 z>APty1Q7U_#-%@A*Tr?nl9A6kYGtLb$cZg7mqCgxS@_8hpdYIk{;R;PW_{KOHVzAYVOvGfcKk43bL%+}R2Oma%+ zIY%@zJ2s|e{);UAo@lT82Vq+FPAZMP%B_EoW+^O2sED}>l)E@i1P3~bbtF}J-5v9= z8;Wq=%jHS}AQQ7bglWYF3vvkNL%v42aMiN9aa7u>Q?L|&?pYE2C%dkeMs(!Ye?*CD5qDMqoAB$t4UtPs(o1-ok?wVY_tc8oVdK>MRy6=LgMh8l|}0# zB^rV}@ngP;L-_TX-Csw3oeeh(kY;{n`#wj+ISia&=RyZWdSOsiBrX{Swo*r#_(s)%I?(P^-O7fx zfQ7%z*)Od=qPYeT_%4M0Z|lSy)!8CEAMkFM%htomV{M=r>BuAOvBw%tio^;drUwgE zQ5J5r75T$edZ<#RXGNP6Tr4k=hn>fQ z*eCO$3GSqDcPn+ITIXTFSoO7=t6TWOUnNOH&(P(?Ae3_~hdT(S2^no{EYfUors^0U z8;$kIH~gx-{;@KolVCEfe2HBvbHFSheHZ+xH1%ayNI#ps!N@ZysRqYgcH9#C;GjwO z^H0VH^Bx62?cVuCLMZWn;%cw670qCPrsu8d9^5-pK1olTQYWu;$76+Inq|^REZ%m| zqsXAQAlD^;mdgKWt(o8oCf9ALzZIueF5HTU-RCaMkHjpfjW>0%n|HO+}? zfp!q>08eKx@M}k{Jaz`Tc2>WVD9@9PFKs;gJ4nGL3;6Oy5LAD0(wm7_y&`4uK6tO^ zzxVwl>JlsM2GX6jgGrNw>{k1~`vr`Jr`U=N!zZdzjqKYr1sO2;K#RDrF&z70nqKaI}I&{wyn@hQCh^c(jX){tCRfu3L9X>_Z{t zBj{jODUx>Bd*U;=@8ny9w^|sh_?m%Knq2_Y+qpoi*ajX)T31t1U|eQ6$>BKU?3tyX zGYkVkv!LeV`k>Asm}YQbu~xXV3KnED^rJquOom7X$&IkV+bjwcTCTWFb%!U@RG8x< zk@TE8aIAWDXaFE+u@FV~*pBEqWU+3rwqq>J9q3FEtyB_fsO<<{1xug$`T3pB)=#iL zh~Qczh5R`hkVfHzU`wQcvqP$ZOh#5kP9{`itJbJv1s)dJnYon`g*vXR=;%z?O@*O&)?%C zR@8U0j&Ris*JQV8LEMlJ2^v-7BF|K)R(alcI*>KGWG68j$JF`ecBcXvlf)r>UwMd^ z-|N8jjAvF4l+c+8rv2r?{Pyqjdr-SCPkq&h z3X{q`KCh@=^(j@xl*Do;;c~m-I)zSo(wlBr;UbEsHm`V!cU1s4Sr@LEl}JUW!wK#^ z?be@H(%~{LP4q3$2Xz2OzQPaBM`}AF1hZaQ(`?DIj(wl1a&-zTI*+@2M#DG1hv$qt z+wh<7tk*y$2AG1pk2WT8!iAzA(G27O_;waJmFVTL!zVu zeZ!3o=w#@L=0_FPv5xydj2mkqqZ%1k>7C;vAmgU{Ek&N3ck*Ue=B%LGkd|0^;ef7T z28or*jFxM)m&#%&xOIX?GSSvV^reN;xrPvv{$sREx?A?VMy{QGm8jjd!qgzj8j%`h zLn?HFwj(t%+xmEhDMpb;8>q_hDj}P>xsmU=MgwDH;V_+igUxVkEaq+DzCK`vTgZrp zS%C;FVrYEQt7%-q-)Iy6`3Lhl>83s(n;Dv%q{3d`purEJNH&k7$8n6s0{!ALvwROq z%@y63M&wn~h@3T03mx1p2JK5crfTLEkOmg-uW}D<3zUjrV04tewao|Y_ov=`3aVM+ z=DO-tadx>iaRRGL8)h6X+lgH*G2iL82eI-({J$2$H*-yI+R5=!5}dp^(B6ZaV_Rm`WU|DvIL= z3tdta!&kIj?SUDULo`n6Upv@?h&t;3WiZKlM4l?_(!nG3l9fq$btub4u1ztAGY(;h z>PV`{=>R|0s&v42aUN8i<>x_1!&T;m&nWvpXzjZbRNQ`UXYq7Rv?`YI2z}!I?6IN_ zr;5r`QRkkb$7=7Q@` z!9EkpHwSi50ArQZ24tl_)rgX_AC`~xt`&>)f_MJ>>U#{WJbL{z9j!#YHbv*Lv~im8 z&?f}7VqEQj0NYRbOb%5*uIBmrFRFc7hCy&dee%(+=8~I&wX95r13p+zjL#8|lkb$~ z=4Am|(`Cs61zv=Jp!96JNUamM)Y%vNtpU4^r;3wN;U0IGnzzX{rD)@8!Q0Fz-;zXL zeqpt}=EV_!%{xH7(D`i{=Ecv$FvrQ(w4@4mhsk=ml?pCfG4vCyzKUd-1C8|tVb|<4 zgVWQ1;DdhZ7!uE!3)sXpMx7CytQGp`csZ0$jO_Y6-&h|29E9DeNvSF+vi9^Qa}A_P1PI3^wGGEY^cj)?{m=u zwVHqK+aGw<>nO;n^v?>#ELOYa~eM5)ptfuJIy zAR@gJktQ|LYeMfO^iD$W5LyTj5`HiHY&_?l``tUn{r8UVF9&0ocfIdiv#n=6bIvRW ze+4`P!=tD?!&0^M%d#Xz%4=T3Eug8qw^}eO1!5?pFl2(g(0!vP+bH!;ND@PWaPC;f zYxPilcWL8+m5CoVh&_A@(L3*8I{4ZnTHIF>331Gth;&QQ!C}lUP#*0jILTa0u5eJy zO}u(jtgH`+ZPHt~n&BHY?FHCdz)P{4p1L(9b6ynC`EMZGj1(ej0bLIXcN&Ri5}I&o zZPhx9y>#og5dYm*Gp$>*&1!c<_x$;FGC~N<{J#`qO1a|)UT>H-lsK<1Xy{2@)wrQ} z?O>xL)X!85OhnLA9y#GGj#brUAi2K78}8S-WEZ+X-V6K^JMxN$rF>gWwJXC{i}ILZ zuvyfM1^C1oZ!(_l-UDVj3mcmZlkuTaYtv;a+Z=T7p?KfL6AZxC>g9xcxUU@7EJo{FKDFW(Unc~jdO_P_^Ao+9!0 zKSY77wi`n;)spz<88VC5a+CNWU58!tq8pg@3fUPn$==m+*+h}Q*=`gw2W)@AKI_!94J^68eBq>ufsnVBN%0PMYJ)sh( zVw|hvMXe=>&fYjKV;68)3+z|IQ$lf*Wo%z=173|nFk_EiU}=6>C7QzoWg2(+WAjJO zsBFqLNih#%{)c^JR;DI!H+F&;FbV!v7l3}DOhIKoaJQ&}!wrbrM#lYR><20{!%FHr_ur@^9wd-;|Aji~mJ# zVfpiKmgNb_?_bQ8|9!;&n=Bx77B1y6V8cH3(R%>duj+zBS2*{Hmb|S#g(>9Rcu@%j zbr<05c(pXSgMGR5))Q;|<1y@?TYcJl6{bE}S~4G}3}IEGc6Q(F-n?Jv1_}y+|AYB$ zI~8U=q7n5{2iGujZxC-wmM5a4Zqm%nuBeqm&MQ1O=+KqHEmjF+L!s7h+JaX|1e-nvUc~EoUu6Cn{`x3}jn@~i;|F42oBzWsojZ4` zhI7jJ>&us>-x&4>nD*>Lyv(O3C+FB0Tn80_?33dasNVdHeDh7hVnilACIS%4Vl%M0o zx0DkhdL8}N*7Gh~Bv)zTVS4B4YdQhVOtS0NOo{8FfVQTEjO*di=h+w?w5eEJxVsGZ zj=k+r1pw-Hhm%&)cTGg|C##?adnZh*+S%Vq=lw01_x^pWq0AJW3^i$Aq51ZT;24d} zWKD7BgU&crV8W%QI1E1_e!cuQxH}Cl7UsOLTQS>W$QmWgnyhQ~q) zb8r5B*@55M4}=_;X+^d+{tmi&v;GP%YHlnWzlS|8_aWEM?<{ICgJ3h8)BS-|W-{(8 z1Mki*b8y6gyG_MlM@I!#x|-5%?CY)6*Xy!cA~YFQW#AB7i$06qUVfKnC+kS{{Wb?5 zQ=d44{Nk0K<%3}hzr*wx^8)UjwGM;~u}>9GFJxK+^IiMO2qN7QUkn~yHIO51_qXG0 z(4z$`54{cQyO%7e8k?AvmA)MCuaphi5soWX6TB@t;}3dy`RU)w+Kh?oJM^@&3ho3Y zo-F)FDEny;dVrwA0>cDzB!ywfAF`vIgXY`@bwerJI|wAX-VP!9#yM_haM+?dNpJ-G z3l7Hyv8wvT67WApEyxwGRqZ=KA8>OXwrra~GafZ4?2kE67)6Yv7^8 zs~bIeCh#+7eMlcQ6NUIWUyK52!~V;aV(+4-!(1lhRkYm@X}|wH+9nW9gtWbP`ctu5 z5VmFrf8t-|K`2C+_vhO%62~+K?+7{0jM;P@UULyRk%5%Usr0E=c~R0;o_Fa;PJ(XMF3l`Z8(4G?h3YNs@!)LFlIoe z2(rWsW4(y`CAhi4)^xp`QpPGgV^0>Cxysm`Q#Z%)4KN2*cG2ATFyJGs)N;LY>m9Bu zQD(MCQ|4O2fpY6^Xr_8R!_l-N4kakCMA`yz9qtvy!S_}t{c7KqRT6HGpiFSvgSJ46 z?L|^F?lC+?2N=ibvm6ezb9fL4m4GUyw?==AWOo9iHz~%Xx1MF2mulR<;OSKJU7Wwo zs4s!{UpLQxohn&ld@v3(S!DoBwepp+?p!M9h*nfTcs2AGUUv4+W_g}t?_J^z>B>E~ z*ZrjdRf;>M>(bC&i0AHzQ_Zzw-&Gtyen}Ra_NQvr+@B(Cox$yECW|d2`K?;MKnOd( z(BzTI^%%J5*INQVJP~KiAiMN)qS>-&)U|{v5vNIy$A0kJI-ta@=|BU7c~rj%RRofD zfLo9#Cp{8z*pqEu^K*_%0ivS)R88(%XiiZbRHIM*b{P2o{tdjdyUSl9GW)-#t0jq9 zPkm>B-N&wrzGOYN*DPnnLCxhF6iU$+Y$8J^@4$ zcCRu>d#}G-85CUHYbM|36ZmeL9+WIy8G0L-_ud+Y`*Jx}!s>AR4A3F)_T>0Dw3W{y zv^xpIw9HI@) z-39R)Y>kuOZl2Q86-qIr>Ot}fsF9d%oQI8Y)MSyFwLp6i|w5(*Jy zeaO`_K3SXLjK5@_@B`8)WTZ@erc)JltFmW6>nC#1YkK+Xy_aClysx1z-ViPY58iky zvE6gz@D`Gm0d9H)&U~KtNi+fDHaJs#lyK+9TB?|EpdWn4NeZ5C{zNO@QH}?FKBWu> zIESXcPN9`>A~2S6V^UQyG-3tm^MIA~N@XJ20Z=_WlhB)QIFp8>kA&snGIf)(AxDQX zXgLun{epbVy~!wJ{|!AwjjNW19Z@)iZZZpbDZ$BS0jX?^R>de19M68N9vp_&nm8S3 zBukZGzrT~k-sXQb(lffV=zH@z!+za9ixZX8dM`@LRW^dQs~SSsUg>opA0dE=D)(bv zu!_G#DC{1WRJkdxiQ>Y? zonCD#e`Mmdx=Y%btn%mN8#B_1UTfc|eud~$#ga1FXpofEHOd~UrcLB-G0yS!b5!eix+of&;gi3;KXrL z^Hgb-Hs~ydfKI-lOdV1l+wGqPW3)AVYo1RJaOfOfTe4{DogN%kDRpxYe)z^7hw^RL zV?XXJLPv62+ zo+jg1uKrd`8lOMsrrPramYWnhW_RM!quQ^FWM`=eo@>e8GU9)C^boA!*nENBprP`0 zbhG|DY+zIPL# z{+4Sw1HO=I+o7UtNYBqE)-!H$Bw^9purO(8k{Ts!9GN0`Iar`KO#G^X8f{*km`?Y7 z^@}&&M%XbVmHbZba)m)EeDYwC*W5|cmM}xPd*LhVWvDN zySTW;Q0A)GaF?z9&mC-2cRXulVtD{ zg6Qz>^b}?Mw#239%^keR-I~VZw(~}xwf5paVG@)rPq@G*oSzdmaGMtFVYcdhkZbX! zkiNpHVJ{t^qUkE;iR)1F!v~o*)=d}aWpRQbTEPnGD$c$}5udNL6E zT|_ZX#U3L(%AK&fyFj6IYj)=ix#UV2Uq+lLo6Q#BvVy2j!!2-i$SaNCZPH=mO;oCQ zb0pVJJ}a210bQRrNM5KfZH!<|_SseruK=owpkX_mg6MBYtZk|X!MsQz%f7TSg)cwN z%N(n|CLJ9q9)9(zGC`PgkC(Extq!F${497E!KMx&l?|qGc>TD~w4Kzp&o?N9j4?fj*)5QiW#=0xJ21{Z}L8b9!E_K+lM1ZR(?Z4gK4~ zz@L3f`x_YtO*6qead1(QGlKK;M|O0Muhl{b2lG}x%QG%1oNotd&9r4ELo!~r4bQ#L{g@>u`=)d3ZWr%t*PO9RWT+N( zd=3v!f_fS)QN6MN%EQ?;&~z@NzyZ^hn`dOnlRC#K*~Q1xaj_S%ubPR}Y4HqzH@k?SI>b$f<2mBZGN~D}zOflyGT}2dniJ zHv*~rYF?%I`=)2ANFB64LPS2Y=w7%)pA9nl(YS+_QH%m7L*j4p&8NLURub3^N=-j! z!o83E?}mO&g1X^uZ)()8^^EGUY4{!^x0rqSoF|)?07I%dYJZgW#sadOo(YG=w_(A_ z99lmb1tURQje?pWojizpV7s0YKAOF50v z=56~w=MlPT57`>!&J!yn=zZ!#EQ%h^W!gReu-&=`j)waz8dsDgr!dypk9bnKQ9Qx4Vk!P2&eZkmRUVvdjjw&$45K% z{tbef<0E{7kM?E@r7vm99L!wd{T2{!?a&eV%lrL+ErCh81u2U0-0bnhQX0~t9vmH` z%!K@=*#yCP=17~yadMg~+-F5u8-3L6{FzNf%Cez9LbGVAt;2CwhH!Kv4WcSV!yu)@ z(_viREI?F1B(za)t6Gc>w`RPWGoc)me^ql&M2aP8a$Pq{Kc6$icb%7*8$Cj4SFIXf zlwdS2_iW{BxWQmf{qbFAIs2eCiiTT9P?v+ujwM45xwUC^>>aKelNgQ1hF`Wx6$Cw` zWwG(B=YcKgYD^#?k$58)D9`Q?6#$ld{rL}h=7dS13f4F|TEB6sN6-)P9FVI}zK|&P zI+>DY5OVJv@#3AVKDK19tOi41r{oqe!O!B0Zoqk^5M0#7lW)Xr8`r}+x zs-2aU>{!el&5>_v=`)v56%`hug9kznN5Qcx)}9`5Bk6LpMJcL1Bj}M|M_FuuWm^HWN{zmY{atB31^W-X z!>z^LP^4mRE&moB@3NKy3=H4JS!}1rB*Ru-YnQBftVN`0s(YkNIyTv5a-Xk1@R1L=nI}7+O(v(_krXv9vz`B%m*7d-8h7HS|H>@E=eTCb3@?Ka zwqPW@D0{L(su%xz4pybBfQd(Ff=FB(Q`v*rZU4hdxar{v8WuG(5+yx$x0iJkuOG(~ zUcai+&*zmQGAIvTKhk+6uE+a?Gx`Bru`MO;;}6wM<>c`@00CGH)D^gmI6g25VQQqK2g z=h}i>LYavceIIGG&NO@+&ev~fZe9q8G52|Y$)dFFNkTGYVVNzN>q%Bt-Lsk}vt#Zn zH3STWhQ>Ae0Vl&88(_SIt^3-D_tLW(jPGHL&$_y3nFlbDf%P4+Q_w!<*C-{0%#03N z8ow4H!fGq7Yf`x+`QJ3k6Q?Z5jqm#$*}=iq%`B4$nd-^sHj&Nn6?-}LeXPV5blexb zW(9uXj~IEcdL18^$stYZ?7x;sU+Q5uYnWaMhaZ0{`&hHPZKnys`$TaLGOp#IHfM55 ztvRpWk#Z}C*Q8oS>E{_oaT$d_;29UL(?ewYj$-|w+ZEtsugbO6bVVxYVrZ=Te{&`8 z0gP0@;|XdeR=cfv9rmUMdf+CvIx>!lE*iXuWaQ!Q##oV}ca_RY8Be5FkY7y04Uwp| z^|4Z?#jyBsNwZ>r?a#m>{Aa zFXZg*4vgj2DHHv+k}fff5?XN`WXK8eBOqz8+|tE#3G%=x;jQAC(=*wLfmgY0wYTX2 zX>b~&Ott6u9u0_#4C}o|MHQ;>F~isA0tAm6F9-%ZWJ1#19!ZQy>LZ3KOosE#rGIK8 zEd95hFz1?=tSm<5pbl!BN{YL}3)Q3xgVLm?fLGvJTvCjb-bUXoM+&~Qu zP=GVg)RgYF+{daK?K2%fXYM^8rJb&#m!(}|M*NDB^~wASFFp)x?Z{f3`!BBHiMvb~ z&Nq{BzDF7<7?2J0AeFk;(OLKiJLRKIoP=L3XgBwEr+DBmQ|_gC<_zcS<(N-O;FH!E z9@T6g+C_%?`c163+r1FUH#sDgffVyb$Sq&jCCLo8`D|)yS?q>$gMo=grOPpS2`{4M z<$4Bi)jMBPQ?1ffqOuJT8*6J5zz0w=N|aYtmcDW41{+jZHYhY)pd!8OQ;ehIX}A9S z-pBI7DfT_*vSlXbu{P10ni&ycCF($#Anv+7_nCBo%6?{OrKvDI`O!h&4x-w0yGy&2 zroHB{c@?px(pBj$6D!3r(=wk@1cHNb!4|{$W5t&1g{;A#*uR9F`vx#bB23JBMbrYV zKC%U!0Dv7w!{aVdtk2CCs4;~ zv5%%5L;zTU)tia3CE4!uBKCdN2R~~IaO$^eT)NQofO3#Y^)%GMbUwm35&?_rNdcat zVTEDD%P-~PXgdMo!G28a5*%h+;JVn2t2qWBsrR-+x${#~&kA0oU#8(i?e}#c#>Y_R zDAS6dC<*r^27+R)={K6R6IReVZgFuD#3QvOQIsaH8FxLYIf?4&jDZk)i=T>@Pi67K zbBprh-L6XW;GRF{TVdqXOrHuL3rywW_qUXP-wI#-eN5(|!-9tMlf_-wy|Kqb`6Tb{ z0S@lTu_3#)nW45K9W;h}tm33*@jY^OHN8V0Vde>-Rqt@>hQ&+7o*uN{q4PW&OG*m7 z`;g0ihzjc`>U$UnOu7dcWbvt~vca@n?`3WsPnKc1jQ9PtKzR&wVz8AtDt};ioi^Sx z)AB-FK;L2h3f&r+q00jDq!pgDny!N$9mHN!*SP z_O(ZA^-h-oov6c}MY&hO@?6`b-oTj0dP-g+kD3JUXILQd~$c*{zGN?QzG{9|TJ=g3CuF#X1v(?N&?k?u99#WUr}QAzW0A<~8u{ zA2b0Ulnhkyx?6Mx?d^m_pNGz#pp#RetAiZ@j0*VerFjZ$(GNwek9(b8zk(tio&Q#| zab@bb`|4SNoot3i`@kWM~or$vxrM1o7b@hEi)}`ZO{mO0%nuW#u zWpOinR?){pdHJrBKKev5Fo9{?%$sJW_>B|p+rC?qPP*DT1-7OO9X!BX(thK_o19gY zKNg-|%y?-vdsbTdWs_m#&4m_oHfl(enQVbu#OVBX?*20ik4J-a(z>DiS3WCSb`rPI z-#tIXSr6DQ&~cXV4e|1smsUtrh0&~=xP~7n#CpozA))C!^emzBZPes7%0r-ut)9gu zb%Kv@qrsl7Vfc|t5M8M@5eI+;Q`Z2}xn-ah5}2%0r+B>)*9M}n#|YWwkIOyEp}t_{ zu0S8FRw}}m%%|d)i=6#(z@*xlXAjN!>A5_nW9Iu!rG|V~NGRlsn!Cc%wZ1z;Mez8r z<+M1*9X4a*E6oW#9X9%ilyb2)myw&CO-o3ExH5#@+h+^7sRnFkJYUpNuCB}dBHM-{|q+kW%Z=N>% zt;P_ofAjdHgAeAGE-#(Ot-+4e3sfi*(PQHRmx`S=qd#v%^v-^1iBo6d;9HrE7<;-OZgOXS6~D?Y~WFE5S^u#-_HBBHONNe!_ZF%e14fO zUa94~7>Dkb#JL3_E?1a-0c7-i)BFnBV7ESaw=`A+;UpS#51 z#F$%mdg(~SUt^2!_glGh%VT|z&``=K^Qs?ZR>tIe;VOg8T|ObfG8Y#Y^Ix^EH>B8x zN4G5xH#iupQiUw-#V%%wB5wSWa%IS3Sfoq*)2C0b7Cwm znkppGHHp?&TPI|DiY~3CyO!{|(> ziz%*U`spik1HHUw#!_HpFxjL{0lB>#$zcASa+}Hp#up1H8NtKj+ zcWfj^ZGYq?g``H5q(*#w{9WYbQqfFh)9|n2kmH_NUYzpZbg@ zf8NE7$qJ@mu1pQV(q95`_IcvkWjR5%*fai>cpZoS3Om5eab=E#ZX);ck#7un2T6tT z#`$}K?C~`O<0IT8?QVS)v(G*zklUo#ULCw4+3B*Xzb=8=!2|-rqL;8wOKFpvRi?c# zs~)&|rE+h1xWFV7q!Y($ixg?X#RRYxtQ+2l67HDUeKlHE?IWAt+`gKxKhI&`lE7oK zkPhMeCB>}`b9#=eZ57%(oL%8>I*6aIZ+vWXenH#cRxPmI`|!LX=fsurvsw)(H_>PQAxW@$oaq zmjH+K%H^jy&l+ELj3UB)lhtP@q(RM~Bdb4f`O0oHyDlKM95G2hhLlST++z2B=sHz(VGScn>F>@!y6^T>@m;Hw*9A_*T}y)}@IQ0dSx zlX*4%&JjDbF6q88l;_(*i7S28TdAG^qzpY*c4rxl4p0PGuqW0x^y?%ouEf6ghu-*J z(zwS`U$$(fhBV}O3!Hsq^%iJ9{l_2s1}Tt=UkyLanS^Ji9&vD+tsz}H8tpUISo`4;3gqEMU;kzw-)n$y<7rO4y#lk(V$Gp#V$|SUtx8$^waTAA zOO}UHbApUL_3$2(kkYl0bk|S}_qfNa@dDLAo=MQF$*<%hy{fOcHb;C!&K;$-Ftqbz>Z2H0P8duZT@O9WA^P6<0=na69*uuw`COBF;^tN ztjzaJI3A=1pEExx^CJ8ixcwjQgQ86sXk$G)?eLH2qFnDY6(*v%@HcIHX$|qFGwt z8ZQp5`@veryne_zUFdVtTMHxe`-g*dCsdVVo_}O||8K6G(Cz>I^CX}6|0Ipn7zUp# zmP);I3+61!PQBR6fLu5KJk_N6!BrZA2PQWc8oe(u{BU`xxgU08b|Iz~cG4h-o#Rxc z4RXwl*TGIq*l}Q6-uf}0>dPYoCzVh6*r@BHKls>qTDuGl42DPQcpoaVL-W|XRYf0g zur;Gi?^fNtcP|~%6+UnaG%6;IyAjpy=s)SB`!te*)IH>H-Z?I?rntZs;Kgs!C+rbC zy>nF%SY3$q->YN72QG>RlClbGxhrPCYcvtvjdseA$e6qA0p4+0=I=VlH;wwE(^|YP zO}u#N7qU!EDFVA>PyYzjZErsHS9sd3I=v9H$SLa^_r@dnKpf{!n3mtUo*_*~EOmK9 z&CQW|ounC;Id7H4JasvVDm8=G+TR?NIFWZHhZE{itxDIZTkl1aGc}*;jrR53w>KRr zD%)LfIO9hrS zz50>Yr)Te0aroCxGzB6>3_S8hH-gqMlz+OGeg6<&)3D;afEPQEW;P$G76Lu-IHq_Q z6g;v%V040v#7my;qNw{O^355*k^S-5?9|TxWHmLTAXOB)8TR2r_$MXH zEIC7cEpl~ruA#2^L+Z=Q1#(>Be?3rs7Wv=4aB3=bX@pgd=Be}RINf_c9?Z+V?u|Ig z4Xh}G&n-sM(uC7kM;dbR@X}p+)bzlJB~17F3kd7M3LxlBpn=7|&TEHk6wLBk>FKOA zXn2eajEj?lIx6}lDVYJf`}}Pg@rB}}&}G^V8;#LlBkK|CXFeD7hT;~l*KfCPU%$k1 zJ>tdt+%)E!@~vej3|FT!r&|g{y7?$;%^+qOZ`1uX%XewjyOs)vD+l>|R_rh83H6=u@ai&uZndr4(_EL&gCRgKAAA2cnvFWPuupIq zPA-V){*-bZP$2eUUUTEfV-mJ@k*$tTv|&0qLV;))V&(*r@%s3>wR4NOpdnS>y7DcC z#NyOqML!9`TdYWSJbYpB_SamBoGxdy?nQa)b1XMMb1G{;4KE)%S+DK)dP8*vMq1{& zUdLPhM~b1_!O65T&~S^$7*u21*z4Rq2H8CM*`Rab&OYL-<3o5Sd^0QX zAS_*9FVIPPGZBd=*8`RE&R=}M*=Wlq-C;_}pm6dRksK7H@}ZOf#o z8|~pSd6*wR>RUpubiiphFmra|+E%FLi=Owp^ddeI$G>3gMInJZ<-fddfZRnTD@UYW zWHlAcM`!{peA7iQkCyNevqz!!+gHu`3DcyjpVQvwV}jbR@0s$NAk`UAK!~Yi$=YTE z)~yAa=l|>6Yaq4%;5z?!l_nD{U#Q~wc{F?uj4AFLHWz7XbnR;uj!<++7J!WFB103; zTVCmsF?-=_A2*q$r=y8T-VT8Kc4oZhPcTDGOf!{OPY3k4Lk)PPm|erAdmn}UiV+>q z~|S6B|kIqaau zio}*Tzhjd+P00=^jRv*nTCPjm@uE|qP1f9C2dpA49>WS zsuvtuoUAJB+U!5rsaaW-!fof$DS36Bv{XKX`t!RkzpI_-;(b^mM~3L(FT2jXpNJ)# zUoh8NetH1iUZ3l?6I^tNbC(SlGp@v}M5(A=_i;P_gk#WzOF0wtX_VHL`h%vD_WId8 zi0JaaU1{;YM$xygJcDFTY=RZ!{EK#0@4L6Wb(&Y;=5#x?#M-L>I zJ0=opbfZCtyX*_Yx_pBs3W2=xLD@NF1;gS4`IudHx_1SNaw@2`8UKOUKPb#7B-}e@*1n42>_Q7#nK*{izbHu+*jT1+h4z}Tfpb65dZS~jQh zwxE{vE)Vh(##l?^I#T=$<6t3S4hK*;*E8%v40{Ia4}kOxpho`&=?t`wxIm&rOPIMk zUIz9}6O=3siFDl=5&#pg3346fDy+v_dOc4$xP)B>i*!lUxDQ1kulPyKB^@otTZA5x zZld<8LJiC@Wk)Vc?Fi5wk~|t+TtpP)QJf>W@B>_-WDv*Q znN-XZ2RotjJUXJ?iECg{2%4dvw9{2jYxIFPiJ_wX@afxzvZ{rL8y?3isR!V*i*imL zA(vcg%7@v=v+f`!Dh+A+=%`xwC8~oAS~Sk# zxXF4Wy<{fbJ0<&l-1>m=K>%I0uqhI6ZQq4K?mGfW@N++DdZ6m+RrhaobJ^63jOuIa z&_V{3!Hx&}dm*X8^0jWM&ttZ#CLgXROS0I984cKuUrESlc8K@jsa@`TxF~3{U^=oM z<>l2dh%PlFaV@QCiu8wK(Xef?^>GS6Gbn_hnKdWQ%8?q|!64_h9ez_;iQ_$aCqx%f z|KeHzot;KgJ3p^(-e!G!qC>|4Do^@(_>B22k&8145FA9wak#0@QF!zuK8v9CaBSsuFuXnm9h8SYo=Hi zA#tAm`FwOoob~QNv!d_z{~_OAcauy=j^<&s42M^;XTM)E>0!+0cYgIDCvA%niZYy;kj6FM|E8xkPA*;G@z~k zB_qjAWW?9?AMKaf3&SI|?`7%M>+&jV725gcw0bVlT#ES9Rz(!P(Je9BA?Gy6TI{3m zq^$C(o^J62$CLNQ1{;OL_;x~wHz7dcM0q7nmDiNQ!dl+j9lx+>11g8B^7gE&(rwOC z91xt2!*1T#n0;P8+2w;o*1g1+0u5gKmnV!f#{-+sR^__!9r6q;B5s`VOS(*+ZjF9U zCCS$CZkEF17t`pt-#fkfUTzSqKvI}olxUafiby(~-o;Rq`Gspox#9YJl>z}ZW(}Ht zgw4EgGu<2*<>%D*eUnDWas@^)IYxN%tlYJpKF|EXDT}>bSv_bRw|K9|{bKo#H|#X5 zUYAxT8d4T)t{3*#H_K=hLY4W5x9P5H;|L2tDe9Y<=KiQQ_f9&hniU0;}?pK2BRZ+BqHt?UV^thGZ=ezy$9g$A+;Gi}> z5?x9@Xlh|G@7CEJ$aT}R$Lsmp+@UB>U}K_E)0EoUTpZa|g-=ww?bmhLX=gv>ii+;Y ziTUOWUw79e(6a8gZe*|0q`#3h|H#M2A_uE6x1xX>d)E7=4w{4<1T?ZZXYnf7X{kgq zLu<_6RhT?8h2)VUCxy#bY*0)vt#T_M`($VSCmaHw6iV{7SHokhvSWD6AO~7?$fJq1 z%+Sj<($JYyc@biap_9ukq$_5w!H(9Dl6lV7Dhnap*zH!`6l}E4tzwb*g z(pBJ+#P@>qXVs@reN(BzpT1VriNve5YZ~fxOFl$$MQt3`Yy>w-ET>s*Igg^bQ~hZY=f< zLNlk#ZR(I~#0sOebjscPJDHE5bYkb!gvT}n>in{weCsIp-JsQ41vfj!9gnsz1HNy~ znbGe#x$y?7KcCr{)K6V=g}DMgDzN%=v)V4joFmZ3PqKPpC@wT8qDHCe78B#0yWSoa zoYZ~kk66=l5g2Ybe-irGm=?ytOU(FE$s%u!KI$6mk5ZqK7C{~_ zvS?Mzk;lu)JRK948}%xViD)Ej0r6;&y;n!Yv@Vh-2_Sa}0Ht(57WM4usb~@h6FjRn zF-h+y#t%G~L4w;j8>#Y`olThI6Gsse*vPy&>upp*QkRTN(Nzy&=|Y#4&x8FMd9D)6 zf>AJ^%0?G7!|X5lXf}PxrgPoL__+l;c>aN~z*HuBh%Ep?ULR?e1bfPmmj_5`OEoo; z?raBzy1S7TcDGF`2dRKf`oH*_UjHh$eN0D%JFjF?9;RL@1F{TSZrQ22?a9-^G(L5^ z0OLE()sNN}_d(Uo2Vd*%waaL6@Q_@@K{~->oYD5AYm^?g^`6b@+T_%8#@9l3CMJb0fdb?>&a@~ z9L)QwxPS^HH=Imsl}T&@No-NW+GDJO1aLqJrjlJ#n?W35cA0)C%<@Er5q4wy2+|Vn zJWJRAkK@01A>yX1aCjr+Qr2iXUe*9ZPh-Tn9yF&h?-n>we&_!_8(t< zT>QLdpxcV-`G`OOy28%(Z_CClH$X!-tS5jzVs}OFgCvoBY^i)~MSN_lb(8joTT6~Z zJJny)1f`eU}zcs)vp5Z4dmcJHH97 zLOz_a$YFX=a~S(&Jb^UXTLtn9BdMCoPpcOmQM1y7Yin~w^-+CZ^VI#jJ|^<|e`xPv z?$VQu^$E!=w{1+vQPo|^)Vm2;<{~~$g9Lw{qk`U^1>hw1Q(joA`f9rj;cTsN~h zUgm6R=*Uzc@`@Eex_hk!H4e(<5iXLbMh*{r^{i^rSDrWzujPS#q)gnU>9UyyoT+34 z{80KpNOKq1B3hjfYt7c3U65r8XuAQ59uUrVq5nuXq@j^;C|lm$)jiUe-S?f6g%meX zfWMi?pj-VCqhc(+#popx3>x=nSXAu^(6JA^o?=Dby%OWSkG=%v|8;fZg}6;l6uG5{ zO9PSU>rRNLZvm-@-##K7oQ?b3;>e~zM?R1~n1eM%+*1ySJ-9|wShYKpjag|~EvH_f z_K-y#sRUg=D}BFjPSae`8RGL3o=MTw4-&{TB(Kox+`{3QE!h14)BAq&Ki*j{QX1V= z?SAaIF!^PiARw?|{c-_pL-W#_&Sr5A+l7L|6C#qr;0bsskRWHHA5ki2(^}`A{umrH z1#xLe?9Z`D!n-4X!JfS6DTGtn@6UR@S%|R|MKkWN2TP0cGO5(~>>|o#sbDqQ2b)ip zi!P@q8M8zODZT&xK#kDXt4hbWGbmzoZpRE6q653%Im|01j!494W|i}C9Ihl#4#cl? z1?`1+bunjA=K%8Fq&h{WSpoDXyuzpqxA<~yvLdPF11^aecl*3iXF4*#Q_!`LYy-12 zaU5#steL&PM^qQYh+>bvEzU*QC22Y(!^`dDw_8?W;=g#7XWd1=I%GzOl8)ZNH8=L> zck^p_7*#^95b?ayu=t-Oz?qm+odVz;R48yLGtJA%HYCXtlVn0zQdEGzhSvW)3`;U+Czd!+ zZP?5o9gO?rY>@>YZX`NXdnUI{&zCCdOC}kER!wWGN7P->_VJ$1fy0Bc^f0MXyoy&X zT8o*)RD@g9k<|VHQu#7c;@6Q;2&O>?$v>rLp*0A9DJ~zRoZ-U}beH4(SM0D}FyH_J@$x!UnD}O$Q~zAc{q8qXU9T+luqgq*kWY+HGhD!O z=ia9TOX>UYxkuJbd3`k7P?USz-Xcm zWuAsE{H|?Jogr@D!LJ06N;Rv~^vR~g?8zVdwGe3GJMK?AFG$vsiZyd|2`%{zKY7dm zP6H_$U&>I#fnDN)WF>d?uNVP=eF}RD%nwY}8EjRH@siNhyC9c-r@2Y;EG7xGyorQA zF~F_APt1khHj18YUfx|RZ+`va*XoB!S9MRc;3X3q*8w!gLTZ3PXs)VE$vQz$QU|@R z{u#5?05-{IyrgvWk`(pkm|4@2wA`7}B$$XIudMWgXSP+IvUA>VL@O)bW(iZec@6TVR7UufMIGT0(_{MWNU&J^D?n|lfd8f+eDp%=Kabc0xd?ajF z$pTy3n#N^xceuvn@+wC)H;>BKt9t}|RMKW%3GoZW0MO=r+;6}j%AXgss_%G+bKAB# zCP6h0;RHdac>th5Mufp*{8r``?+cX-NEDk-^EnUyxf)7mw3h5t?euwcaeUF2Fj`q$ z{;h^*gS2DX3J1%=K951>dk#C85oCRRhl5C&eI|Ld?0kK z+~I5As&qb+9S_I{&*yFsE$52;fJyK`8F0R>^}Bd#pE(RZ50vMQNYITWkgMQvcbgKr zyWDkgC@FD`nDyGI11V}t#W;x6OK1|gvB%{sRz0!tEoMI7d$wNR*l(-%J%S2xxX_cG z1JBcxL9WNN)~+gwnq9%}TQx@8DT?~hl|b_XS1+UWh?I>R;%@vaYlJeK413;R(Ym@p z?60k@G`8FMhLP<~vI>E4zudJKA9t4?AJF6n@$Wws8LE(}Gw={G;OC_2ZAeyoE6_hP zv%9afz(je?F{OK`arZKdK}TFn96na3Vwc?ESzr^5>HllgU@-`Bp@z@kcp>NS-2)~$ z{{#0l`D+>)Ig761#>>cukMK773g-IVsj)i-(FcxYE}MMGVtJE+>lwF0MyF-)5$UDW zIrdas$#1;U@d47RFzFIjVVjn`a_KVOH6m$u5B}BRV7aKPhT)2uR58B~F@7r*Uv`0! zQhZmv7NaT{vu0QgX({04AtlC#9e>%tD6j`n?S7jSFXP<1jQF?@X*E~*5;;5t+*TQ- zu3V^wrEE)vaVS_j%o`1st>%#zjAc!}@zR+^`5t^R3S;Ed436}@)Gaz^Yd^>{l*^_O z{2cbJcK;q=!jlyc5zQPU`8}X{N3Gx4-&@PsVWi+V86Wmng+-amL zp+r%HGBIBbjh|j|crGD}ZJ+G4My8N1Cm7jXu)DKshwYy9>71saTrBG*zaR}PUF+xd zor7_AE+YEJ3(+{$5Da+-OpkyS?p6I7QF`UdV)s4uyu9a+J6w#tx#?>WP0`;YK|o$SxiMODQse6VL0 ze&7gRk14)zl(1A?Lt!L9umob%Gwi_9dfZl3AMd$z-wn8%7rtp~KG0{O>I=QFu6z@w z%W3wV>M96T48b*3(BBjJnEVJ~KcW729yWUFqilEUJhxU?1?ea>5>f3g3wP|mI2L0o zy(%|Rrk)NoW~%efBBBgxehsfKUcrH18;a~-tpTl(@JtB*jzoP)JGfo`V7wI*3xGm#B1*5>R^RhTgkK=+gU9QIsm7ccq&EkrH}9s#NK{DLu5%d$}9W z!Sjwg?)`V~`2M_qlCj4~)-H4IwdR`7GoLvxCJ**{+nfD35_#-bOR|p%u-`2Y#(eh| zJdZh_SliCgBViOPK7afT>l*JUNxsphYieBgUb6-m-3e&H_%|{V7_bo=2UKkNx2NH8 zsNCX6T7LeW^107l63L=I?3RKu4{p1rw424TyP>CD# zbt$9x$crSy_;3Fy5IX>d`Z4|H9}xPN+~i;EmyEstsl%OTB$A)BjtpT7A#ad2s_E1& zkCe2y*|~$@eTz`(t)-{ErsaKXlx&Q^`}kM+@0biAu@JtZ)QwY??M|o2@RRnLneZ&^ zzrBYA%!X8Oae1FtBh8G+A_zFaE`o*wxjB8fnYrMsTwF}17pgT=G?)92^Nk-M3J5vs zBqix&c6;&KH%qB*P9Jgx_p_NpRB%L(NRj)a7?vJ=4V8|PbuFX(>G8P6fCB*5p;SR z9U2|oaep{q84sUm(B*|&#L<0d?m6#+!6-*fa9?1JObn^k-R3zSrsnzD3vUBDvi z_P`B4vPXmdx$x9L%Yen)*C_DVz6iZ#UAx0+tiZG~XsHVVxh_ZE3UHFH%wNV`J3a)A zZL%VzT=!*L!fBIK%#O20-qcF=o-0H;1gQ|ou|Zr7l3%{T9+ z57E%7=;LfV)7Zkv;2lj`5m<@=&b(2GLsUHp_goAlb`qAS#mY^s%oSqs(CzUtU?R@T zgl6XOql2aURGQgutm`EiRT;qA$jFxkFW1<+i9nM&>-yDp1(Wu;sLYd=Tj>LzQ$3Q2 zL4rq&LcGqpcLmEr$9mFePQ~_VguHt4Ug90QuNQpE5x0epXYmpDcRstjbSG7k;lb?? zR&p}7*w*5sx?IkBOy= zrT2|%g1$Gy-qMIAjCCf?Eb}>RmVSEMfi9KM_9dJ;PWK5Vu_-(J(WBVKMuVr|xtv*m z5ViXHu~+Q18v#;WrEG2BiMD!oKqqfWD@zeyuW7(`S2;5zJBXYD%I7LBuuPQY1W|*= zqzAt)de}Hp-^jzAt#~#BYE$2E4ONVlIut>Q2+8iTe7U;d$aDJSLS1U(cbvQvLSU+I z%_Rq&HaT)^*nlvUrByBG7~rXBiG6;gKjvgY`#i(W9BKQ-XHL;6Jnb310U}_eT|sj` z0sHO{Z%}?;d$4cdZkA|koB39pPzU28b;KQ5R-xm7sk_zzM-(&JQzmj9rS@hm>w@J| zf}hFhKP>Y>&YPi1id|gXZR+ZfcN_fFghqQnsUHQAg@r&?j?X!`Gs3GWE52u|KYB)b z;%XH!6Y9(raI%x(%hU(Z0GT5So)yE&Ef*_iJv6`{H*@n>-I`BGw8G6A(q6AfX|7K;FU^x=K zJfPj^icQLBU{>P%%o%XR$)l`vBb)LGv@=j~RIWBWis9!+yV-b+{kr;-M?Ce&bb?cL zZIrH27uMJu_AdOP8lYwKc>8i<1~wrI!#3G5-%UdDNg<5!%IWVzlw{xPL>#@njW3^> zE>R6|8O{{H@0(QEU~8`6SoYxQPBmnJpqkGrJeXYbYMlfz$rSEVPI~29JOvp zho-<;Su$UVarfEU`2G}@@xH%-_jbcDfetD4lnf=n(}Gv-Uwv>m8&CKp7gguq!n zSBnWPG`w{@ZT~cdnm+oF4G>W)?zjhV%z)xrf`oF)R(Ldhe0i?l3_Mf>XZ4k8kTX2{&T$%b`#;@GLwiN1NPxvUImCnGDa=_lpRnMSPzuL?Em*-U2# zN{>3;t-i*0uJ9NTI%M9)>+ePlh_zbdTKC=rfF2UqME`N+g6{b@K1jsiN6zKy%Liv} z{ni~29zvC~XcBQe*4f_M+6vpBO3j`p;e;!mf&<%LnNhGPynMN-ls-S(5;@pA)JK!i zk10`#Cq__&wo6@`dQb8w1s8ulPikO2nu4h>Xm7E;8ino;Bt^9F?l=R1Z#zxKZ`JX*~ znMPNM|8VJ4zvrud@7x!d;k^2Pr-lMHo>Fd)_qQi5$7-;#)zOP?HcmB4rJnV@NI@S< zOrz=!lQPk*xhA!U+OVY_Wcobz2(ows8fO+8bL3!z}uBFl}IB z`g3w%>ygbglGr{GaG4E?g{F!DpTdp6KeE`aOQO&Cmn8w*&CB)jPJ!hd%58y&XKqu1 zoMFblsl8Emom`XfocYM-YU5>E;|$^SQB!PcxPe7UP4n@m@OHRYCBBI&DA>KyRqJDk zrhe#xlQPT0EvrsV*$D^~Lvp;?tkpp(JKt8^aW;L*&BJ5g8%M0_uSPpbMP|KI3V|zf zaj^kbmp2|cmVU-mo`6<`o zjnSh&pIP1r10x zfB-ZcIr90wMfDqM{w}SZj*GH}CA9{aF+2N7O3wQ{Ts+7y@HRTQ8kL=GZ5q42&LGgm zuG+`&sb3k5a|UPbr5=^r4_2$2J`gwL2+0a!n}@$}8K_l{3!@C`b{@B#{n7_i;{;$d zqib2%=C5+yzR}#t!^uvgjVY!;8R8c@E^P$$d48I+D~3;P<6}>gQ)iKomL1YQ zSxOsIVI)n)3}=QcP@{!zZ1XJIog1FRMEM*CxxNLZomd2O%U!?0i= z7;T58)E3sl(xbq>ckV28-z~ruW`i>gNlrc12D;O$S!3UU7^NnPo$DQ=+or2fBm8|m z1=Ej3CVR6*M=9C3Ib;DSTbh5ELWFobnZ}Ktvi4^)`GTxBb}UG1p10o*Z3p+xUNGHu zy}Zj|>sq5+XNBwL(8s4_pz5rTX~WjE$bBM%$-;tDrAf~f3Ec_11%uF}o4_o5<=`?} zY4YFbZR^nDY4iIOp212rbL`oDm_Owp)NBK9UNZ4t4G&}OR?d=!B?mU0=vNO8c2;}n zt_+rMFZIgYQivQ}5cT3|5j1Y9k;_B+oCTuaOS1u0@9HA>Yh6dbPM>`S{RsIAlSoB9#2IeCg2^Ss*ux~ zej4UrL_l5sAt)t-eBt{|ribWt!>?{1RTark)9hpAby2J0FSJEqijkWxE?+(;Jy0V2 zF#RNhRf?@?%~WEzW5Daf;~&iD9cJsCWb@S8c8wRW;*Ededa~hqg}zE<0-k!Kv5u1l zLFoiK`rY0EENy{(SE>7LF?F!JS$t`6SfNRzzPQ9h#F&9&X{pB`J-DV$UY%#34WA{< zD91N{ds0NUzsy&Cwy4FGJ)sK_NMUvHp3giv3GaxjG)PQ@5z$PP6(q*Rso|#HQ$Hll z%6dgg0sR~#ItrQ&Z{dQd6K=XhO$O-bnyt@Jz%`Dm^ve!kAl6Ng&ebNO=3>6-hA&B? z8^Q}sM&FJY{z)qi$f7O|bn-iW@jWOu73{QEahVNS_HbC!U9L4;JiI9-r*ySCeXEXV zq6jGFIJnFKH@R<+L9e^IKcN5AxrMAvyH+J@>pg`QyH*DVstOSm{J|a_rm7Oo zWAu&%0{^I}Z`Of`Ka>4cdfWFq6}S5uRZ}A&DH$+X<(`z3L@Rtiy&xs(w-GuK7Gn3l zt~;%A#IfCK{ImSC+m`kYYd3K5N^H;!_#+0FG0URq)?PKd;EJ8$1nZA=2aZE5As-}s z639Fyh57i3^7B<#$$Q(BqXShme~G`Ih+nRBCZ|6#w_`FmtNd|O80GVFX~otD$K>%I>CHc4~9Y1fFgQ2I^*(mWKNJ+_yuQVlXd+x&{VR zl{>0r2nyosb^VWTpRsjbZFu0%eJ$fmFS|7t3 z*u5pMPGiT*1Og?C#w#m1<;-Kl6A+?3`JUZmFhrw#IF0A>fc~op6Qf>W$c?>AzXg(O z-;CZXLqOcJP^i!8vFW#nqV-Yj+`5n_xb?LD&b zm*OXLaGY~7We3UnNbac@y!2oxb-0Qz%*`!hShk8lh;88vJ^%M1b$QsRbhO}ESy?-k zpA+Tw(`bA$JA?C*-JHZT?8bkJHMYdYKnSCD^bX1wc`tTcd`}8qE6Sns(je+6iW<}iv3tj5>j;rEzf{!BKUQOm zR(4DVH}}#>tPjd~7-d%;E8HI!j{ZXXQKSZ?6EBR%p7h;Yhxrh^i|dkCtL6|@D-lAc zSuI&PT8f&F5zr4>*4D6+D|0T0yL3{|CIoWp@KDr-XKP?OE$sb1=B^q9=RcQH2TEbm z>g`+jpU@^!(s$Mv>?W0Nz&OPh?ndP}_Xg$rb(GA=_>YR5vcN|{43tu@^wp}!ob zDdbRDH@6F~(Y`<KCCAhUHb&B9hDv)aupUc8SYtg*{_m_d3u1JbfU)qRP*&$@r+xy2ZXo zQMO%er?@T+=%Yw8UK_4c?E}V}-G-T_YXA@t3)b!>H5_KO3kR0D5W-I%ED$2>%UL)p+y0% zn*Bz`Hrv4C@X|-%0EF_nWGJ0VT(>7f9s&j)m0TFGh3Ip+Ithf_yI$qB#QY4BDJ{T!Q{)Cxy3|K8g>soTwYgTY18Ak>U$45! zvV1;=(8UTR^fwJAP}{Bjy4FknC~Tr$;VC>MWRVpDC>SKG*Sz4{bnzh8H@eT(1cgc~ z23=)>Pu_ktd33=_wAdUp!}Vm<%m6jo+O0#n7(o{o9Vlz+H!@q5!x!34=J}=@gEIz< z^_y+lp>DhFLmF8XKr6Vvwtios+b%Tboeoo+1cqPt07Z`04$$J}EeJo!ce?IkctK80C_B7q7ByYpv zkyBN=9R}DxZvfhNf5VCwHdcJEq{LcC8N7C5Wh7@MEV1NvSE4naY=4C(qpL&e6FfnD z7;I%FqN}6z!9#zVQm6hRA`r2vdVw#@Hk;Q>98y=QRMs{E7esD zxY_k$t@xLqPvg1qK3nUWoGha_*dy=B^g{$#dypvX+j3-2-_nSAgCeFdwHj?ZZf+*E z>-62!%V_I)#^6ZgX-!-tgSoKY-;w+51U>C)K=B4DI;fPWEtlBn;3U@^xPk z(^Eyu>iG#Ws~Dn>DKTVVgBqKBa7(YFi8>X1G?@>B=2|fFbK1!c1)MZ0>)jE@{?Y{^ zv2f+`Y(PT(32CKwCDKpFj<~Okw`8T?SEITNJXVVBE0P&zm<0N14x`*xh8{?rm?cD% z=`pKS`00Db6s{9u7>s>K4Mdloub^RrE^Eu^WRXKVJ6nHutcAC?=o7`cWpZfs{H!Yvazik1uE7BzW<34=YSn6eg zvvP)HAoo#qXX}00<74Q6!jeT>;-Rg*y-JTYUmE(ZEmh!3|3yNUx)}VZsHmhry^Ao8 zQj{eP(z~B?o}ZsD;kj;PZ@-G|?}b1hTTg-icpd+aYPAV2P@t3Q%c%NS^MoF&{~rFT zmHmJCG?rdp5LQ37wNlJI`1&@#21a|K4{`x&eoQo%(J?_2T}aIUhgW(!zc7JNV{b32 z`7e&2KO6ZFtLq?haYYx$f&%uf?Z`4FK-&P=qXNwIyTVrU+T)}^cmovrUb)hBi?(F2_5J)Nz}d+xvJvVc=W#oNb5??%<>{>Nxkt(xT_C)(Hk{jXuN zgx89)3C(|;?p#{w)oqr)%%aTR%!V$?5H%KyXFN8}X#^2fiP z{qeV>wUhk!`@(MjW6uGV", - "container": "organisation-chart", + "container": "react-organisationchart", "accessKey": "" } \ No newline at end of file diff --git a/samples/react-organisationchart/config/package-solution.json b/samples/react-organisationchart/config/package-solution.json index 211686c7d..e6b9e6d7a 100644 --- a/samples/react-organisationchart/config/package-solution.json +++ b/samples/react-organisationchart/config/package-solution.json @@ -1,10 +1,10 @@ { "solution": { - "name": "organisation-chart-client-side-solution", - "id": "e8d123c1-f6a2-46ca-8f33-940b6ac8aeeb", + "name": "react-organisationchart-client-side-solution", + "id": "95c4b6f9-b123-4eca-a70a-c1165995faa2", "version": "1.0.0.0" }, "paths": { - "zippedPackage": "organisation-chart.spapp" + "zippedPackage": "solution/react-organisationchart.sppkg" } } diff --git a/samples/react-organisationchart/config/tslint.json b/samples/react-organisationchart/config/tslint.json index bf3362c87..3c085daaf 100644 --- a/samples/react-organisationchart/config/tslint.json +++ b/samples/react-organisationchart/config/tslint.json @@ -16,13 +16,11 @@ "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, @@ -32,8 +30,6 @@ "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, @@ -44,8 +40,7 @@ "valid-typeof": true, "variable-name": false, "whitespace": false, - "prefer-const": true, - "a11y-role": true + "prefer-const": true } } } \ No newline at end of file diff --git a/samples/react-organisationchart/organisation-chart.njsproj b/samples/react-organisationchart/organisation-chart.njsproj deleted file mode 100644 index 6c06cb9cf..000000000 --- a/samples/react-organisationchart/organisation-chart.njsproj +++ /dev/null @@ -1,86 +0,0 @@ - - - - Debug - 2.0 - {e8d123c1-f6a2-46ca-8f33-940b6ac8aeeb} - - ProjectFiles - node_modules\gulp\bin\gulp.js - . - . - {3AF33F2E-1136-4D97-BBB7-1795711AC8B8};{349c5851-65df-11da-9384-00065b846f21};{9092AA53-FB77-4645-B42D-1CCCA6BD08BD} - true - CommonJS - false - 11.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - serve - True - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - False - True - 0 - / - http://localhost:48022/ - False - True - http://localhost:1337 - False - - - - - - - CurrentPage - True - False - False - False - - - - - - - - - False - False - - - - - \ No newline at end of file diff --git a/samples/react-organisationchart/package.json b/samples/react-organisationchart/package.json index 215cc0f6b..1c74e1c6b 100644 --- a/samples/react-organisationchart/package.json +++ b/samples/react-organisationchart/package.json @@ -1,27 +1,34 @@ { - "name": "organisation-chart", - "version": "1.0.0", + "name": "react-organisationchart", + "version": "0.0.1", "private": true, "engines": { "node": ">=0.10.0" }, "dependencies": { - "@microsoft/sp-client-base": "~0.4.0", - "@microsoft/sp-client-preview": "~0.5.0", - "office-ui-fabric-react": "0.52.0", - "react": "0.14.8", - "react-dom": "0.14.8" + "@microsoft/sp-client-base": "~1.0.0", + "@microsoft/sp-core-library": "~1.0.0", + "@microsoft/sp-webpart-base": "~1.0.0", + "@types/react": "0.14.46", + "@types/react-addons-shallow-compare": "0.14.17", + "@types/react-addons-test-utils": "0.14.15", + "@types/react-addons-update": "0.14.14", + "@types/react-dom": "0.14.18", + "@types/webpack-env": ">=1.12.1 <1.14.0", + "react": "15.4.2", + "react-dom": "15.4.2" }, "devDependencies": { - "@microsoft/sp-build-web": "~0.7.0", - "@microsoft/sp-module-interfaces": "~0.4.0", - "@microsoft/sp-webpart-workbench": "~0.5.0", + "@microsoft/sp-build-web": "~1.0.0", + "@microsoft/sp-module-interfaces": "~1.0.0", + "@microsoft/sp-webpart-workbench": "~1.0.0", "gulp": "~3.9.1", - "office-ui-fabric": "2.6.2" + "@types/chai": ">=3.4.34 <3.6.0", + "@types/mocha": ">=2.2.33 <2.6.0" }, "scripts": { "build": "gulp bundle", - "clean": "gulp nuke", + "clean": "gulp clean", "test": "gulp test" } } diff --git a/samples/react-organisationchart/src/tests.js b/samples/react-organisationchart/src/tests.js deleted file mode 100644 index cb4bb5cf2..000000000 --- a/samples/react-organisationchart/src/tests.js +++ /dev/null @@ -1,5 +0,0 @@ -var context = require.context('.', true, /.+\.test\.js?$/); - -context.keys().forEach(context); - -module.exports = context; diff --git a/samples/react-organisationchart/src/webparts/organisationChart/IOrganisationChartWebPartProps.ts b/samples/react-organisationchart/src/webparts/organisationChart/IOrganisationChartWebPartProps.ts index 40d0ad0bb..e5c5cf368 100644 --- a/samples/react-organisationchart/src/webparts/organisationChart/IOrganisationChartWebPartProps.ts +++ b/samples/react-organisationchart/src/webparts/organisationChart/IOrganisationChartWebPartProps.ts @@ -1,3 +1,3 @@ export interface IOrganisationChartWebPartProps { - description: string; + organisationName: string; } diff --git a/samples/react-organisationchart/src/webparts/organisationChart/OrganisationChartWebPart.manifest.json b/samples/react-organisationchart/src/webparts/organisationChart/OrganisationChartWebPart.manifest.json index 6d85bb329..88627e120 100644 --- a/samples/react-organisationchart/src/webparts/organisationChart/OrganisationChartWebPart.manifest.json +++ b/samples/react-organisationchart/src/webparts/organisationChart/OrganisationChartWebPart.manifest.json @@ -1,19 +1,20 @@ { "$schema": "../../../node_modules/@microsoft/sp-module-interfaces/lib/manifestSchemas/jsonSchemas/clientSideComponentManifestSchema.json", - "id": "9b754dec-d280-4c07-9460-06f911ecd024", + "id": "32a5bf6e-3ee0-4788-a301-56136334815d", + "alias": "OrganisationChartWebPart", "componentType": "WebPart", "version": "0.0.1", "manifestVersion": 2, "preconfiguredEntries": [{ - "groupId": "9b754dec-d280-4c07-9460-06f911ecd024", + "groupId": "32a5bf6e-3ee0-4788-a301-56136334815d", "group": { "default": "Under Development" }, "title": { "default": "OrganisationChart" }, - "description": { "default": "OrganisationChart description" }, + "description": { "default": "WebPart to display an organisation chart" }, "officeFabricIconFontName": "Page", "properties": { - "description": "OrganisationChart" + "organisationName": "" } }] } diff --git a/samples/react-organisationchart/src/webparts/organisationChart/OrganisationChartWebPart.ts b/samples/react-organisationchart/src/webparts/organisationChart/OrganisationChartWebPart.ts index 9807349ef..0e6661c8d 100644 --- a/samples/react-organisationchart/src/webparts/organisationChart/OrganisationChartWebPart.ts +++ b/samples/react-organisationchart/src/webparts/organisationChart/OrganisationChartWebPart.ts @@ -1,34 +1,35 @@ import * as React from 'react'; import * as ReactDom from 'react-dom'; +import { Version } from '@microsoft/sp-core-library'; import { BaseClientSideWebPart, - IPropertyPaneSettings, - IWebPartContext, + IPropertyPaneConfiguration, PropertyPaneTextField -} from '@microsoft/sp-client-preview'; +} from '@microsoft/sp-webpart-base'; import * as strings from 'organisationChartStrings'; -import OrganisationChart, { IOrganisationChartProps } from './components/OrganisationChart'; +import OrganisationChart from './components/OrganisationChart'; +import { IOrganisationChartProps } from './components/IOrganisationChartProps'; import { IOrganisationChartWebPartProps } from './IOrganisationChartWebPartProps'; + export default class OrganisationChartWebPart extends BaseClientSideWebPart { - public constructor(context: IWebPartContext) { - super(context); - } - public render(): void { - - const element: React.ReactElement = React.createElement(OrganisationChart, { - description: this.properties.description, - environmentType: this.context.environment.type, - serviceScope: this.context.serviceScope - }); + const element: React.ReactElement = React.createElement( + OrganisationChart, { + serviceScope: this.context.serviceScope, + organisationName: this.properties.organisationName + }); ReactDom.render(element, this.domElement); } - protected get propertyPaneSettings(): IPropertyPaneSettings { + protected get dataVersion(): Version { + return Version.parse('1.0'); + } + + protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration { return { pages: [ { @@ -39,8 +40,8 @@ export default class OrganisationChartWebPart extends BaseClientSideWebPart { private userProfileServiceInstance: IUserProfileService; @@ -31,46 +26,41 @@ export default class OrganisationChart extends React.Component = ServiceKey.create("userprofileservicekey", UserProfileService); + serviceScope = this.props.serviceScope; // Based on the type of environment, return the correct instance of the IUserProfileService interface - const currentEnvType = this.props.environmentType; - if (currentEnvType == EnvironmentType.SharePoint || currentEnvType == EnvironmentType.ClassicSharePoint) { + if (Environment.type == EnvironmentType.SharePoint || Environment.type == EnvironmentType.ClassicSharePoint) { // Mapping to be used when webpart runs in SharePoint. - // Get hold of the webpart's service scope object - serviceScope = this.props.serviceScope; - + this.userProfileServiceInstance = serviceScope.consume(UserProfileService.serviceKey); } else { // This means webpart is running in the local workbench or from a unit test. // So we will need a non default implementation of the UserProfileService i.e. MockUserProfileService - // Create a child service scope and include the mapping to the MockUserProfileService - serviceScope = this.props.serviceScope.startNewChild(); - serviceScope.createAndProvide(userProfileServiceKey, MockUserProfileService); - serviceScope.finish(); + this.userProfileServiceInstance = serviceScope.consume(MockUserProfileService.serviceKey); } - this.userProfileServiceInstance = serviceScope.consume(userProfileServiceKey); } - public render(): JSX.Element { + public render(): React.ReactElement { return (
+
+ {escape(this.props.organisationName)} +
Managers
    {this.state.managers.map((manager, index) => (
  • - -
  • )) } + ))}
You
  • - -
  • )) } + ))}
diff --git a/samples/react-organisationchart/src/webparts/organisationChart/interfaces/IPerson.ts b/samples/react-organisationchart/src/webparts/organisationChart/interfaces/IPerson.ts index 9c7ff8659..920a2c60a 100644 --- a/samples/react-organisationchart/src/webparts/organisationChart/interfaces/IPerson.ts +++ b/samples/react-organisationchart/src/webparts/organisationChart/interfaces/IPerson.ts @@ -4,5 +4,5 @@ export interface IPerson { ExtendedManagers?: string[]; Title?: string; DisplayName?: string; - PersonalUrl?: string; + UserUrl?: string; } \ No newline at end of file diff --git a/samples/react-organisationchart/src/webparts/organisationChart/interfaces/index.ts b/samples/react-organisationchart/src/webparts/organisationChart/interfaces/index.ts new file mode 100644 index 000000000..0ea214582 --- /dev/null +++ b/samples/react-organisationchart/src/webparts/organisationChart/interfaces/index.ts @@ -0,0 +1,2 @@ +export { IPerson } from './IPerson'; +export { IUserProfileService } from './IUserProfileService'; \ No newline at end of file diff --git a/samples/react-organisationchart/src/webparts/organisationChart/loc/en-us.js b/samples/react-organisationchart/src/webparts/organisationChart/loc/en-us.js index 89f98bc1e..776f4935e 100644 --- a/samples/react-organisationchart/src/webparts/organisationChart/loc/en-us.js +++ b/samples/react-organisationchart/src/webparts/organisationChart/loc/en-us.js @@ -2,6 +2,6 @@ define([], function() { return { "PropertyPaneDescription": "Description", "BasicGroupName": "Group Name", - "DescriptionFieldLabel": "Description Field" + "OrganisationNameFieldLabel": "Organisation Name" } }); \ No newline at end of file diff --git a/samples/react-organisationchart/src/webparts/organisationChart/loc/mystrings.d.ts b/samples/react-organisationchart/src/webparts/organisationChart/loc/mystrings.d.ts index 782a393fc..44ea5a0d5 100644 --- a/samples/react-organisationchart/src/webparts/organisationChart/loc/mystrings.d.ts +++ b/samples/react-organisationchart/src/webparts/organisationChart/loc/mystrings.d.ts @@ -1,7 +1,7 @@ declare interface IOrganisationChartStrings { PropertyPaneDescription: string; BasicGroupName: string; - DescriptionFieldLabel: string; + OrganisationNameFieldLabel: string; } declare module 'organisationChartStrings' { diff --git a/samples/react-organisationchart/src/webparts/organisationChart/mocks/MockUserProfileService.ts b/samples/react-organisationchart/src/webparts/organisationChart/mocks/MockUserProfileService.ts index 4d20cbea8..37c8ac2c5 100644 --- a/samples/react-organisationchart/src/webparts/organisationChart/mocks/MockUserProfileService.ts +++ b/samples/react-organisationchart/src/webparts/organisationChart/mocks/MockUserProfileService.ts @@ -1,44 +1,43 @@ -import { IPerson } from '../interfaces/IPerson'; -import { ServiceScope } from '@microsoft/sp-client-base'; -import { IUserProfileService } from '../interfaces/IUserProfileService'; +import { IPerson, IUserProfileService } from '../interfaces'; +import { ServiceScope, ServiceKey } from '@microsoft/sp-core-library'; export class MockUserProfileService implements IUserProfileService { + public static readonly serviceKey: ServiceKey = ServiceKey.create('vrd:MockUserProfileService', MockUserProfileService); + + constructor(serviceScope: ServiceScope) { + } - constructor(serviceScope: ServiceScope) { + public getPropertiesForCurrentUser(): Promise { + return new Promise((resolve, reject) => { + const user: IPerson = { Title: "Consultant", DisplayName: "Adam Jones", PictureUrl: "https://raw.githubusercontent.com/OfficeDev/office-ui-fabric-react/master/packages/office-ui-fabric-react/images/persona-male.png" }; + resolve(user); + }); + } - } + public getManagers(userLoginNames: string[]): Promise { + return new Promise((resolve, reject) => { + const users: IPerson[] = []; - public getPropertiesForCurrentUser(): Promise { - return new Promise((resolve, reject) => { - const user: IPerson = { Title: "Consultant", DisplayName: "Adam Jones", PictureUrl: "https://raw.githubusercontent.com/OfficeDev/office-ui-fabric-react/master/images/persona-male.png" }; - resolve(user); - }); - } + users.push({ Title: "Manager", DisplayName: "Grant Steel", PictureUrl: "https://raw.githubusercontent.com/OfficeDev/office-ui-fabric-react/master/packages/office-ui-fabric-react/images/persona-male.png" }); + users.push({ Title: "Head of Management", DisplayName: "Marcel Grose", PictureUrl: "https://raw.githubusercontent.com/OfficeDev/office-ui-fabric-react/master/packages/office-ui-fabric-react/images/persona-female.png" }); - public getManagers(userLoginNames: string[]): Promise { - return new Promise((resolve, reject) => { - const users: IPerson[] = []; + resolve(users); + }); + } - users.push({ Title: "Manager", DisplayName: "Grant Steel", PictureUrl: "https://raw.githubusercontent.com/OfficeDev/office-ui-fabric-react/master/images/persona-male.png" }); - users.push({ Title: "Head of Management", DisplayName: "Marcel Grose", PictureUrl: "https://raw.githubusercontent.com/OfficeDev/office-ui-fabric-react/master/images/persona-female.png" }); + public getReports(userLoginNames: string[]): Promise { + return new Promise((resolve, reject) => { + const users: IPerson[] = []; - resolve(users); - }); - } + users.push({ Title: "Developer", DisplayName: "Russel Miller", PictureUrl: "https://raw.githubusercontent.com/OfficeDev/office-ui-fabric-react/master/packages/office-ui-fabric-react/images/persona-female.png" }); + users.push({ Title: "IT Admin", DisplayName: "Robert Fischer", PictureUrl: "https://raw.githubusercontent.com/OfficeDev/office-ui-fabric-react/master/packages/office-ui-fabric-react/images/persona-female.png" }); - public getReports(userLoginNames: string[]): Promise { - return new Promise((resolve, reject) => { - const users: IPerson[] = []; + resolve(users); + }); + } - users.push({ Title: "Developer", DisplayName: "Russel Miller", PictureUrl: "https://raw.githubusercontent.com/OfficeDev/office-ui-fabric-react/master/images/persona-female.png" }); - users.push({ Title: "IT Admin", DisplayName: "Robert Fischer", PictureUrl: "https://raw.githubusercontent.com/OfficeDev/office-ui-fabric-react/master/images/persona-male.png" }); - - resolve(users); - }); - } - - public getProfilePhoto(photoUrl: string){ - return photoUrl; - } + public getProfilePhoto(photoUrl: string) { + return photoUrl; + } } \ No newline at end of file diff --git a/samples/react-organisationchart/src/webparts/organisationChart/mocks/index.ts b/samples/react-organisationchart/src/webparts/organisationChart/mocks/index.ts new file mode 100644 index 000000000..dcb48ef24 --- /dev/null +++ b/samples/react-organisationchart/src/webparts/organisationChart/mocks/index.ts @@ -0,0 +1 @@ +export { MockUserProfileService } from './MockUserProfileService' \ No newline at end of file diff --git a/samples/react-organisationchart/src/webparts/organisationChart/services/UserProfileService.ts b/samples/react-organisationchart/src/webparts/organisationChart/services/UserProfileService.ts index 906c099da..c16ecb4e7 100644 --- a/samples/react-organisationchart/src/webparts/organisationChart/services/UserProfileService.ts +++ b/samples/react-organisationchart/src/webparts/organisationChart/services/UserProfileService.ts @@ -1,73 +1,83 @@ -import { IPerson } from '../interfaces/IPerson'; -import { ServiceScope, HttpClient, IODataBatchOptions, ODataBatch, httpClientServiceKey } from '@microsoft/sp-client-base'; -import { IUserProfileService } from '../interfaces/IUserProfileService'; +import { IPerson, IUserProfileService } from '../interfaces'; +import { ServiceKey, ServiceScope } from '@microsoft/sp-core-library'; +import { PageContext } from '@microsoft/sp-page-context'; +import { SPHttpClient, ISPHttpClientBatchCreationOptions, SPHttpClientResponse, SPHttpClientBatch } from '@microsoft/sp-http'; export class UserProfileService implements IUserProfileService { - private httpClient: HttpClient; + public static readonly serviceKey: ServiceKey = ServiceKey.create('vrd:UserProfileService', UserProfileService); - constructor(serviceScope: ServiceScope) { - serviceScope.whenFinished(() => { - this.httpClient = serviceScope.consume(httpClientServiceKey); - }); - } + private _spHttpClient: SPHttpClient; + private _pageContext: PageContext; + private _currentWebUrl: string; - public getPropertiesForCurrentUser(): Promise { - return this.httpClient.get( - `/_api/SP.UserProfiles.PeopleManager/GetMyProperties?$select=DisplayName,Title,PersonalUrl,PictureUrl,DirectReports,ExtendedManagers`) - .then((response: Response) => { - return response.json(); - }); - } - - public getManagers(userLoginNames: string[]): Promise { - return this.getPropertiesForUsers(userLoginNames); - } - - public getReports(userLoginNames: string[]): Promise { - return this.getPropertiesForUsers(userLoginNames); - } - - private getPropertiesForUsers(userLoginNames: string[]): Promise { - return new Promise((resolve, reject) => { - - const arrayOfPersons: IPerson[] = []; - - const batchOpts: IODataBatchOptions = {}; - - const odataBatch: ODataBatch = this.httpClient.beginBatch(batchOpts); - - const userResponses: Promise[] = []; - - for (const userLoginName of userLoginNames) { - const getUserProps: Promise = odataBatch.get(`/_api/SP.UserProfiles.PeopleManager/GetPropertiesFor(accountName=@v)?@v='${encodeURIComponent(userLoginName)}' - &$select=DisplayName,Title,PersonalUrl,PictureUrl,DirectReports,ExtendedManagers`); - userResponses.push(getUserProps); - } - - // Make the batch request - odataBatch.execute().then(() => { - - userResponses.forEach((item, index) => { - item.then((response: Response) => { - - response.json().then((responseJSON: IPerson) => { - - arrayOfPersons.push(responseJSON); - - if (index == (userResponses.length) - 1) { - resolve(arrayOfPersons); - } + constructor(serviceScope: ServiceScope) { + serviceScope.whenFinished(() => { + serviceScope.whenFinished(() => { + this._spHttpClient = serviceScope.consume(SPHttpClient.serviceKey); + this._pageContext = serviceScope.consume(PageContext.serviceKey); + this._currentWebUrl = this._pageContext.web.absoluteUrl; }); - }); }); - }); - }); - } + } - //SharePoint does not return the userphoto if the current user has not currently signed in to the my site. (ODfB site) - //This method of getting the user photo works in all scenarios. - public getProfilePhoto(photoUrl: string){ - return `/_layouts/15/userphoto.aspx?size=M&url=${photoUrl}`; - } + public getPropertiesForCurrentUser(): Promise { + return this._spHttpClient.get(`${this._currentWebUrl}/_api/SP.UserProfiles.PeopleManager/GetMyProperties?$select=DisplayName,Title,UserUrl,PictureUrl,DirectReports,ExtendedManagers`, + SPHttpClient.configurations.v1) + .then((response: SPHttpClientResponse) => { + return response.json(); + }); + } + + public getManagers(userLoginNames: string[]): Promise { + return this.getPropertiesForUsers(userLoginNames); + } + + public getReports(userLoginNames: string[]): Promise { + return this.getPropertiesForUsers(userLoginNames); + } + + private getPropertiesForUsers(userLoginNames: string[]): Promise { + + + return new Promise((resolve, reject) => { + //at least 1 login name should be supplied + if (userLoginNames.length > 0) { + const arrayOfPersons: IPerson[] = []; + + const spBatchCreationOpts: ISPHttpClientBatchCreationOptions = { webUrl: this._currentWebUrl }; + + const spBatch: SPHttpClientBatch = this._spHttpClient.beginBatch(spBatchCreationOpts); + + const userResponses: Promise[] = []; + + for (const userLoginName of userLoginNames) { + const getUserProps: Promise = spBatch.get(`${this._currentWebUrl}/_api/SP.UserProfiles.PeopleManager/GetPropertiesFor(accountName=@v)?@v='${encodeURIComponent(userLoginName)}' + &$select=DisplayName,Title,UserUrl,PictureUrl,DirectReports,ExtendedManagers`, + SPHttpClientBatch.configurations.v1); + userResponses.push(getUserProps); + } + + // Make the batch request + spBatch.execute().then(() => { + userResponses.forEach((item, index) => { + item.then((response: SPHttpClientResponse) => { + response.json().then((responseJSON: IPerson) => { + arrayOfPersons.push(responseJSON); + if (index == (userResponses.length) - 1) { + resolve(arrayOfPersons); + } + }); + }); + }); + }); + } + }); + } + + //SharePoint does not return the userphoto if the current user has not currently signed in to their MySite (ODfB site) + //This method of getting the user photo works in all scenarios. + public getProfilePhoto(photoUrl: string) { + return `/_layouts/15/userphoto.aspx?size=M&url=${photoUrl}`; + } } \ No newline at end of file diff --git a/samples/react-organisationchart/src/webparts/organisationChart/services/index.ts b/samples/react-organisationchart/src/webparts/organisationChart/services/index.ts new file mode 100644 index 000000000..116617c5d --- /dev/null +++ b/samples/react-organisationchart/src/webparts/organisationChart/services/index.ts @@ -0,0 +1 @@ +export { UserProfileService } from './UserProfileService' \ No newline at end of file diff --git a/samples/react-organisationchart/src/webparts/organisationChart/tests/OrganisationChart.test.ts b/samples/react-organisationchart/src/webparts/organisationChart/tests/OrganisationChart.test.ts index ddb915f14..41fc11288 100644 --- a/samples/react-organisationchart/src/webparts/organisationChart/tests/OrganisationChart.test.ts +++ b/samples/react-organisationchart/src/webparts/organisationChart/tests/OrganisationChart.test.ts @@ -1,4 +1,6 @@ -import * as assert from 'assert'; +/// + +import { assert } from 'chai'; describe('OrganisationChartWebPart', () => { it('should do something', () => { diff --git a/samples/react-organisationchart/tsconfig.json b/samples/react-organisationchart/tsconfig.json index 98c8662a9..5fa39c930 100644 --- a/samples/react-organisationchart/tsconfig.json +++ b/samples/react-organisationchart/tsconfig.json @@ -1,9 +1,15 @@ { "compilerOptions": { "target": "es5", + "forceConsistentCasingInFileNames": true, "module": "commonjs", "jsx": "react", "declaration": true, - "sourceMap": true + "sourceMap": true, + "types": [ + "es6-promise", + "es6-collections", + "webpack-env" + ] } } diff --git a/samples/react-organisationchart/typings/@ms/odsp-webpack.d.ts b/samples/react-organisationchart/typings/@ms/odsp-webpack.d.ts deleted file mode 100644 index f2b3b03df..000000000 --- a/samples/react-organisationchart/typings/@ms/odsp-webpack.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -// Type definitions for webpack in Microsoft ODSP projects -// Project: ODSP-WEBPACK - -/* - * This definition of webpack require overrides all other definitions of require in our toolchain - * Make sure all other definitions of require are commented out e.g. in node.d.ts - */ -declare var require: { - (path: string): any; - (paths: string[], callback: (...modules: any[]) => void): void; - resolve: (id: string) => string; - ensure: (paths: string[], callback: (require: (path: string) => T) => void, path: string) => void; -}; \ No newline at end of file diff --git a/samples/react-organisationchart/typings/@ms/odsp.d.ts b/samples/react-organisationchart/typings/@ms/odsp.d.ts index ae3334fe0..2d2913e53 100644 --- a/samples/react-organisationchart/typings/@ms/odsp.d.ts +++ b/samples/react-organisationchart/typings/@ms/odsp.d.ts @@ -1,10 +1,8 @@ // Type definitions for Microsoft ODSP projects // Project: ODSP -/// - -/* Global definition for DEBUG builds */ -declare const DEBUG: boolean; - -/* Global definition for UNIT_TEST builds */ +/* Global definition for UNIT_TEST builds + Code that is wrapped inside an if(UNIT_TEST) {...} + block will not be included in the final bundle when the + --ship flag is specified */ declare const UNIT_TEST: boolean; \ No newline at end of file diff --git a/samples/react-organisationchart/typings/assertion-error/assertion-error.d.ts b/samples/react-organisationchart/typings/assertion-error/assertion-error.d.ts deleted file mode 100644 index 08217c9e5..000000000 --- a/samples/react-organisationchart/typings/assertion-error/assertion-error.d.ts +++ /dev/null @@ -1,15 +0,0 @@ -// Type definitions for assertion-error 1.0.0 -// Project: https://github.com/chaijs/assertion-error -// Definitions by: Bart van der Schoor -// Definitions: https://github.com/borisyankov/DefinitelyTyped - -declare module 'assertion-error' { - class AssertionError implements Error { - constructor(message: string, props?: any, ssf?: Function); - name: string; - message: string; - showDiff: boolean; - stack: string; - } - export = AssertionError; -} diff --git a/samples/react-organisationchart/typings/chai/chai.d.ts b/samples/react-organisationchart/typings/chai/chai.d.ts deleted file mode 100644 index da4d718e1..000000000 --- a/samples/react-organisationchart/typings/chai/chai.d.ts +++ /dev/null @@ -1,388 +0,0 @@ -// Type definitions for chai 3.2.0 -// Project: http://chaijs.com/ -// Definitions by: Jed Mao , -// Bart van der Schoor , -// Andrew Brown , -// Olivier Chevet -// Definitions: https://github.com/borisyankov/DefinitelyTyped - -// - -declare module Chai { - - interface ChaiStatic { - expect: ExpectStatic; - should(): Should; - /** - * Provides a way to extend the internals of Chai - */ - use(fn: (chai: any, utils: any) => void): any; - assert: AssertStatic; - config: Config; - AssertionError: AssertionError; - } - - export interface ExpectStatic extends AssertionStatic { - fail(actual?: any, expected?: any, message?: string, operator?: string): void; - } - - export interface AssertStatic extends Assert { - } - - export interface AssertionStatic { - (target: any, message?: string): Assertion; - } - - interface ShouldAssertion { - equal(value1: any, value2: any, message?: string): void; - Throw: ShouldThrow; - throw: ShouldThrow; - exist(value: any, message?: string): void; - } - - interface Should extends ShouldAssertion { - not: ShouldAssertion; - fail(actual: any, expected: any, message?: string, operator?: string): void; - } - - interface ShouldThrow { - (actual: Function): void; - (actual: Function, expected: string|RegExp, message?: string): void; - (actual: Function, constructor: Error|Function, expected?: string|RegExp, message?: string): void; - } - - interface Assertion extends LanguageChains, NumericComparison, TypeComparison { - not: Assertion; - deep: Deep; - any: KeyFilter; - all: KeyFilter; - a: TypeComparison; - an: TypeComparison; - include: Include; - includes: Include; - contain: Include; - contains: Include; - ok: Assertion; - true: Assertion; - false: Assertion; - null: Assertion; - undefined: Assertion; - NaN: Assertion; - exist: Assertion; - empty: Assertion; - arguments: Assertion; - Arguments: Assertion; - equal: Equal; - equals: Equal; - eq: Equal; - eql: Equal; - eqls: Equal; - property: Property; - ownProperty: OwnProperty; - haveOwnProperty: OwnProperty; - ownPropertyDescriptor: OwnPropertyDescriptor; - haveOwnPropertyDescriptor: OwnPropertyDescriptor; - length: Length; - lengthOf: Length; - match: Match; - matches: Match; - string(string: string, message?: string): Assertion; - keys: Keys; - key(string: string): Assertion; - throw: Throw; - throws: Throw; - Throw: Throw; - respondTo: RespondTo; - respondsTo: RespondTo; - itself: Assertion; - satisfy: Satisfy; - satisfies: Satisfy; - closeTo(expected: number, delta: number, message?: string): Assertion; - members: Members; - increase: PropertyChange; - increases: PropertyChange; - decrease: PropertyChange; - decreases: PropertyChange; - change: PropertyChange; - changes: PropertyChange; - extensible: Assertion; - sealed: Assertion; - frozen: Assertion; - - } - - interface LanguageChains { - to: Assertion; - be: Assertion; - been: Assertion; - is: Assertion; - that: Assertion; - which: Assertion; - and: Assertion; - has: Assertion; - have: Assertion; - with: Assertion; - at: Assertion; - of: Assertion; - same: Assertion; - } - - interface NumericComparison { - above: NumberComparer; - gt: NumberComparer; - greaterThan: NumberComparer; - least: NumberComparer; - gte: NumberComparer; - below: NumberComparer; - lt: NumberComparer; - lessThan: NumberComparer; - most: NumberComparer; - lte: NumberComparer; - within(start: number, finish: number, message?: string): Assertion; - } - - interface NumberComparer { - (value: number, message?: string): Assertion; - } - - interface TypeComparison { - (type: string, message?: string): Assertion; - instanceof: InstanceOf; - instanceOf: InstanceOf; - } - - interface InstanceOf { - (constructor: Object, message?: string): Assertion; - } - - interface Deep { - equal: Equal; - include: Include; - property: Property; - members: Members; - } - - interface KeyFilter { - keys: Keys; - } - - interface Equal { - (value: any, message?: string): Assertion; - } - - interface Property { - (name: string, value?: any, message?: string): Assertion; - } - - interface OwnProperty { - (name: string, message?: string): Assertion; - } - - interface OwnPropertyDescriptor { - (name: string, descriptor: PropertyDescriptor, message?: string): Assertion; - (name: string, message?: string): Assertion; - } - - interface Length extends LanguageChains, NumericComparison { - (length: number, message?: string): Assertion; - } - - interface Include { - (value: Object, message?: string): Assertion; - (value: string, message?: string): Assertion; - (value: number, message?: string): Assertion; - keys: Keys; - members: Members; - any: KeyFilter; - all: KeyFilter; - } - - interface Match { - (regexp: RegExp|string, message?: string): Assertion; - } - - interface Keys { - (...keys: string[]): Assertion; - (keys: any[]): Assertion; - (keys: Object): Assertion; - } - - interface Throw { - (): Assertion; - (expected: string, message?: string): Assertion; - (expected: RegExp, message?: string): Assertion; - (constructor: Error, expected?: string, message?: string): Assertion; - (constructor: Error, expected?: RegExp, message?: string): Assertion; - (constructor: Function, expected?: string, message?: string): Assertion; - (constructor: Function, expected?: RegExp, message?: string): Assertion; - } - - interface RespondTo { - (method: string, message?: string): Assertion; - } - - interface Satisfy { - (matcher: Function, message?: string): Assertion; - } - - interface Members { - (set: any[], message?: string): Assertion; - } - - interface PropertyChange { - (object: Object, prop: string, msg?: string): Assertion; - } - - export interface Assert { - /** - * @param expression Expression to test for truthiness. - * @param message Message to display on error. - */ - (expression: any, message?: string): void; - - fail(actual?: any, expected?: any, msg?: string, operator?: string): void; - - ok(val: any, msg?: string): void; - isOk(val: any, msg?: string): void; - notOk(val: any, msg?: string): void; - isNotOk(val: any, msg?: string): void; - - equal(act: any, exp: any, msg?: string): void; - notEqual(act: any, exp: any, msg?: string): void; - - strictEqual(act: any, exp: any, msg?: string): void; - notStrictEqual(act: any, exp: any, msg?: string): void; - - deepEqual(act: any, exp: any, msg?: string): void; - notDeepEqual(act: any, exp: any, msg?: string): void; - - isTrue(val: any, msg?: string): void; - isFalse(val: any, msg?: string): void; - - isNull(val: any, msg?: string): void; - isNotNull(val: any, msg?: string): void; - - isUndefined(val: any, msg?: string): void; - isDefined(val: any, msg?: string): void; - - isNaN(val: any, msg?: string): void; - isNotNaN(val: any, msg?: string): void; - - isAbove(val: number, abv: number, msg?: string): void; - isBelow(val: number, blw: number, msg?: string): void; - - isFunction(val: any, msg?: string): void; - isNotFunction(val: any, msg?: string): void; - - isObject(val: any, msg?: string): void; - isNotObject(val: any, msg?: string): void; - - isArray(val: any, msg?: string): void; - isNotArray(val: any, msg?: string): void; - - isString(val: any, msg?: string): void; - isNotString(val: any, msg?: string): void; - - isNumber(val: any, msg?: string): void; - isNotNumber(val: any, msg?: string): void; - - isBoolean(val: any, msg?: string): void; - isNotBoolean(val: any, msg?: string): void; - - typeOf(val: any, type: string, msg?: string): void; - notTypeOf(val: any, type: string, msg?: string): void; - - instanceOf(val: any, type: Function, msg?: string): void; - notInstanceOf(val: any, type: Function, msg?: string): void; - - include(exp: string, inc: any, msg?: string): void; - include(exp: any[], inc: any, msg?: string): void; - - notInclude(exp: string, inc: any, msg?: string): void; - notInclude(exp: any[], inc: any, msg?: string): void; - - match(exp: any, re: RegExp, msg?: string): void; - notMatch(exp: any, re: RegExp, msg?: string): void; - - property(obj: Object, prop: string, msg?: string): void; - notProperty(obj: Object, prop: string, msg?: string): void; - deepProperty(obj: Object, prop: string, msg?: string): void; - notDeepProperty(obj: Object, prop: string, msg?: string): void; - - propertyVal(obj: Object, prop: string, val: any, msg?: string): void; - propertyNotVal(obj: Object, prop: string, val: any, msg?: string): void; - - deepPropertyVal(obj: Object, prop: string, val: any, msg?: string): void; - deepPropertyNotVal(obj: Object, prop: string, val: any, msg?: string): void; - - lengthOf(exp: any, len: number, msg?: string): void; - //alias frenzy - throw(fn: Function, msg?: string): void; - throw(fn: Function, regExp: RegExp): void; - throw(fn: Function, errType: Function, msg?: string): void; - throw(fn: Function, errType: Function, regExp: RegExp): void; - - throws(fn: Function, msg?: string): void; - throws(fn: Function, regExp: RegExp): void; - throws(fn: Function, errType: Function, msg?: string): void; - throws(fn: Function, errType: Function, regExp: RegExp): void; - - Throw(fn: Function, msg?: string): void; - Throw(fn: Function, regExp: RegExp): void; - Throw(fn: Function, errType: Function, msg?: string): void; - Throw(fn: Function, errType: Function, regExp: RegExp): void; - - doesNotThrow(fn: Function, msg?: string): void; - doesNotThrow(fn: Function, regExp: RegExp): void; - doesNotThrow(fn: Function, errType: Function, msg?: string): void; - doesNotThrow(fn: Function, errType: Function, regExp: RegExp): void; - - operator(val: any, operator: string, val2: any, msg?: string): void; - closeTo(act: number, exp: number, delta: number, msg?: string): void; - - sameMembers(set1: any[], set2: any[], msg?: string): void; - sameDeepMembers(set1: any[], set2: any[], msg?: string): void; - includeMembers(superset: any[], subset: any[], msg?: string): void; - - ifError(val: any, msg?: string): void; - - isExtensible(obj: {}, msg?: string): void; - extensible(obj: {}, msg?: string): void; - isNotExtensible(obj: {}, msg?: string): void; - notExtensible(obj: {}, msg?: string): void; - - isSealed(obj: {}, msg?: string): void; - sealed(obj: {}, msg?: string): void; - isNotSealed(obj: {}, msg?: string): void; - notSealed(obj: {}, msg?: string): void; - - isFrozen(obj: Object, msg?: string): void; - frozen(obj: Object, msg?: string): void; - isNotFrozen(obj: Object, msg?: string): void; - notFrozen(obj: Object, msg?: string): void; - - - } - - export interface Config { - includeStack: boolean; - } - - export class AssertionError { - constructor(message: string, _props?: any, ssf?: Function); - name: string; - message: string; - showDiff: boolean; - stack: string; - } -} - -declare var chai: Chai.ChaiStatic; - -declare module "chai" { - export = chai; -} - -interface Object { - should: Chai.Assertion; -} diff --git a/samples/react-organisationchart/typings/es6-collections/es6-collections.d.ts b/samples/react-organisationchart/typings/es6-collections/es6-collections.d.ts deleted file mode 100644 index bc39df295..000000000 --- a/samples/react-organisationchart/typings/es6-collections/es6-collections.d.ts +++ /dev/null @@ -1,113 +0,0 @@ -// Type definitions for es6-collections v0.5.1 -// Project: https://github.com/WebReflection/es6-collections/ -// Definitions by: Ron Buckton -// Definitions: https://github.com/borisyankov/DefinitelyTyped - -/* ***************************************************************************** -Copyright (c) Microsoft Corporation. All rights reserved. -Licensed under the Apache License, Version 2.0 (the "License"); you may not use -this file except in compliance with the License. You may obtain a copy of the -License at http://www.apache.org/licenses/LICENSE-2.0 - -THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED -WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, -MERCHANTABLITY OR NON-INFRINGEMENT. - -See the Apache Version 2.0 License for specific language governing permissions -and limitations under the License. -***************************************************************************** */ - -interface IteratorResult { - done: boolean; - value?: T; -} - -interface Iterator { - next(value?: any): IteratorResult; - return?(value?: any): IteratorResult; - throw?(e?: any): IteratorResult; -} - -interface ForEachable { - forEach(callbackfn: (value: T) => void): void; -} - -interface Map { - clear(): void; - delete(key: K): boolean; - forEach(callbackfn: (value: V, index: K, map: Map) => void, thisArg?: any): void; - get(key: K): V; - has(key: K): boolean; - set(key: K, value?: V): Map; - entries(): Iterator<[K, V]>; - keys(): Iterator; - values(): Iterator; - size: number; -} - -interface MapConstructor { - new (): Map; - new (iterable: ForEachable<[K, V]>): Map; - prototype: Map; -} - -declare var Map: MapConstructor; - -interface Set { - add(value: T): Set; - clear(): void; - delete(value: T): boolean; - forEach(callbackfn: (value: T, index: T, set: Set) => void, thisArg?: any): void; - has(value: T): boolean; - entries(): Iterator<[T, T]>; - keys(): Iterator; - values(): Iterator; - size: number; -} - -interface SetConstructor { - new (): Set; - new (iterable: ForEachable): Set; - prototype: Set; -} - -declare var Set: SetConstructor; - -interface WeakMap { - delete(key: K): boolean; - clear(): void; - get(key: K): V; - has(key: K): boolean; - set(key: K, value?: V): WeakMap; -} - -interface WeakMapConstructor { - new (): WeakMap; - new (iterable: ForEachable<[K, V]>): WeakMap; - prototype: WeakMap; -} - -declare var WeakMap: WeakMapConstructor; - -interface WeakSet { - delete(value: T): boolean; - clear(): void; - add(value: T): WeakSet; - has(value: T): boolean; -} - -interface WeakSetConstructor { - new (): WeakSet; - new (iterable: ForEachable): WeakSet; - prototype: WeakSet; -} - -declare var WeakSet: WeakSetConstructor; - -declare module "es6-collections" { - var Map: MapConstructor; - var Set: SetConstructor; - var WeakMap: WeakMapConstructor; - var WeakSet: WeakSetConstructor; -} \ No newline at end of file diff --git a/samples/react-organisationchart/typings/es6-promise/es6-promise.d.ts b/samples/react-organisationchart/typings/es6-promise/es6-promise.d.ts deleted file mode 100644 index a8f8d7845..000000000 --- a/samples/react-organisationchart/typings/es6-promise/es6-promise.d.ts +++ /dev/null @@ -1,74 +0,0 @@ -// Type definitions for es6-promise -// Project: https://github.com/jakearchibald/ES6-Promise -// Definitions by: François de Campredon , vvakame -// Definitions: https://github.com/borisyankov/DefinitelyTyped - -interface Thenable { - then(onFulfilled?: (value: R) => U | Thenable, onRejected?: (error: any) => U | Thenable): Thenable; - then(onFulfilled?: (value: R) => U | Thenable, onRejected?: (error: any) => void): Thenable; - catch(onRejected?: (error: any) => U | Thenable): Thenable; -} - -declare class Promise implements Thenable { - /** - * If you call resolve in the body of the callback passed to the constructor, - * your promise is fulfilled with result object passed to resolve. - * If you call reject your promise is rejected with the object passed to reject. - * For consistency and debugging (eg stack traces), obj should be an instanceof Error. - * Any errors thrown in the constructor callback will be implicitly passed to reject(). - */ - constructor(callback: (resolve : (value?: R | Thenable) => void, reject: (error?: any) => void) => void); - - /** - * onFulfilled is called when/if "promise" resolves. onRejected is called when/if "promise" rejects. - * Both are optional, if either/both are omitted the next onFulfilled/onRejected in the chain is called. - * Both callbacks have a single parameter , the fulfillment value or rejection reason. - * "then" returns a new promise equivalent to the value you return from onFulfilled/onRejected after being passed through Promise.resolve. - * If an error is thrown in the callback, the returned promise rejects with that error. - * - * @param onFulfilled called when/if "promise" resolves - * @param onRejected called when/if "promise" rejects - */ - then(onFulfilled?: (value: R) => U | Thenable, onRejected?: (error: any) => U | Thenable): Promise; - then(onFulfilled?: (value: R) => U | Thenable, onRejected?: (error: any) => void): Promise; - - /** - * Sugar for promise.then(undefined, onRejected) - * - * @param onRejected called when/if "promise" rejects - */ - catch(onRejected?: (error: any) => U | Thenable): Promise; -} - -declare module Promise { - /** - * Make a new promise from the thenable. - * A thenable is promise-like in as far as it has a "then" method. - */ - function resolve(value?: R | Thenable): Promise; - - /** - * Make a promise that rejects to obj. For consistency and debugging (eg stack traces), obj should be an instanceof Error - */ - function reject(error: any): Promise; - - /** - * Make a promise that fulfills when every item in the array fulfills, and rejects if (and when) any item rejects. - * the array passed to all can be a mixture of promise-like objects and other objects. - * The fulfillment value is an array (in order) of fulfillment values. The rejection value is the first rejection value. - */ - function all(promises: (R | Thenable)[]): Promise; - - /** - * Make a Promise that fulfills when any item fulfills, and rejects if any item rejects. - */ - function race(promises: (R | Thenable)[]): Promise; -} - -declare module 'es6-promise' { - var foo: typeof Promise; // Temp variable to reference Promise in local context - module rsvp { - export var Promise: typeof foo; - } - export = rsvp; -} diff --git a/samples/react-organisationchart/typings/globals/combokeys/index.d.ts b/samples/react-organisationchart/typings/globals/combokeys/index.d.ts deleted file mode 100644 index e910c8a21..000000000 --- a/samples/react-organisationchart/typings/globals/combokeys/index.d.ts +++ /dev/null @@ -1,104 +0,0 @@ -// Generated by typings -// Source: https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/0b35996f55436563567b9639f1abbf038c08d5c1/combokeys/combokeys.d.ts -declare namespace Combokeys { - interface CombokeysStatic { - new (element: Element): Combokeys; - - /** - * all instances of Combokeys - */ - instances: Combokeys[]; - - /** - * reset all instances - */ - reset(): void; - } - - interface Combokeys { - element: Element; - - /** - * binds an event to Combokeys - * - * can be a single key, a combination of keys separated with +, - * an array of keys, or a sequence of keys separated by spaces - * - * be sure to list the modifier keys first to make sure that the - * correct key ends up getting bound (the last key in the pattern) - * - * @param {keys} key combination or combinations - * @param {callback} callback function - * @param {handler} optional - one of "keypress", "keydown", or "keyup" - * @returns void - */ - bind(keys: string | string[], callback: () => void, action?: string): void; - - - /** - * binds multiple combinations to the same callback - * - * @param {keys} key combinations - * @param {callback} callback function - * @param {handler} optional - one of "keypress", "keydown", or "keyup" - * @returns void - */ - bindMultiple(keys: string[], callback: () => void, action?: string): void; - - /** - * unbinds an event to Combokeys - * - * the unbinding sets the callback function of the specified key combo - * to an empty function and deletes the corresponding key in the - * directMap dict. - * - * the keycombo+action has to be exactly the same as - * it was defined in the bind method - * - * @param {keys} key combination or combinations - * @param {action} optional - one of "keypress", "keydown", or "keyup" - * @returns void - */ - unbind(keys: string | string[], action?: string): void; - - /** - * triggers an event that has already been bound - * - * @param {keys} key combination - * @param {action} optional - one of "keypress", "keydown", or "keyup" - * @returns void - */ - trigger(keys: string, action?: string): void; - - /** - * resets the library back to its initial state. This is useful - * if you want to clear out the current keyboard shortcuts and bind - * new ones - for example if you switch to another page - * - * @returns void - */ - reset(): void; - - /** - * should we stop this event before firing off callbacks - * - * @param {e} event - * @param {element} bound element - * @return {boolean} - */ - stopCallback(e: Event, element: Element): boolean; - - /** - * detach all listners from the bound element - * - * @return {void} - */ - detach(): void; - } -} - -declare var combokeys: Combokeys.CombokeysStatic; - -declare module "combokeys" { - export = combokeys; -} diff --git a/samples/react-organisationchart/typings/globals/combokeys/typings.json b/samples/react-organisationchart/typings/globals/combokeys/typings.json deleted file mode 100644 index 11fefb9dd..000000000 --- a/samples/react-organisationchart/typings/globals/combokeys/typings.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "resolution": "main", - "tree": { - "src": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/0b35996f55436563567b9639f1abbf038c08d5c1/combokeys/combokeys.d.ts", - "raw": "registry:dt/combokeys#2.4.6+20160602154345", - "typings": "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/0b35996f55436563567b9639f1abbf038c08d5c1/combokeys/combokeys.d.ts" - } -} diff --git a/samples/react-organisationchart/typings/index.d.ts b/samples/react-organisationchart/typings/index.d.ts deleted file mode 100644 index 1fe34f291..000000000 --- a/samples/react-organisationchart/typings/index.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// diff --git a/samples/react-organisationchart/typings/knockout/knockout.d.ts b/samples/react-organisationchart/typings/knockout/knockout.d.ts deleted file mode 100644 index 267f3174c..000000000 --- a/samples/react-organisationchart/typings/knockout/knockout.d.ts +++ /dev/null @@ -1,631 +0,0 @@ -// Type definitions for Knockout v3.2.0 -// Project: http://knockoutjs.com -// Definitions by: Boris Yankov , Igor Oleinikov , Clément Bourgeois -// Definitions: https://github.com/borisyankov/DefinitelyTyped - - -interface KnockoutSubscribableFunctions { - [key: string]: KnockoutBindingHandler; - - notifySubscribers(valueToWrite?: T, event?: string): void; -} - -interface KnockoutComputedFunctions { - [key: string]: KnockoutBindingHandler; -} - -interface KnockoutObservableFunctions { - [key: string]: KnockoutBindingHandler; - - equalityComparer(a: any, b: any): boolean; -} - -interface KnockoutObservableArrayFunctions { - // General Array functions - indexOf(searchElement: T, fromIndex?: number): number; - slice(start: number, end?: number): T[]; - splice(start: number): T[]; - splice(start: number, deleteCount: number, ...items: T[]): T[]; - pop(): T; - push(...items: T[]): void; - shift(): T; - unshift(...items: T[]): number; - reverse(): KnockoutObservableArray; - sort(): KnockoutObservableArray; - sort(compareFunction: (left: T, right: T) => number): KnockoutObservableArray; - - // Ko specific - [key: string]: KnockoutBindingHandler; - - replace(oldItem: T, newItem: T): void; - - remove(item: T): T[]; - remove(removeFunction: (item: T) => boolean): T[]; - removeAll(items: T[]): T[]; - removeAll(): T[]; - - destroy(item: T): void; - destroy(destroyFunction: (item: T) => boolean): void; - destroyAll(items: T[]): void; - destroyAll(): void; -} - -interface KnockoutSubscribableStatic { - fn: KnockoutSubscribableFunctions; - - new (): KnockoutSubscribable; -} - -interface KnockoutSubscription { - dispose(): void; -} - -interface KnockoutSubscribable extends KnockoutSubscribableFunctions { - subscribe(callback: (newValue: T) => void, target?: any, event?: string): KnockoutSubscription; - subscribe(callback: (newValue: TEvent) => void, target: any, event: string): KnockoutSubscription; - extend(requestedExtenders: { [key: string]: any; }): KnockoutSubscribable; - getSubscriptionsCount(): number; -} - -interface KnockoutComputedStatic { - fn: KnockoutComputedFunctions; - - (): KnockoutComputed; - (func: () => T, context?: any, options?: any): KnockoutComputed; - (def: KnockoutComputedDefine, context?: any): KnockoutComputed; -} - -interface KnockoutComputed extends KnockoutObservable, KnockoutComputedFunctions { - fn: KnockoutComputedFunctions; - - dispose(): void; - isActive(): boolean; - getDependenciesCount(): number; - extend(requestedExtenders: { [key: string]: any; }): KnockoutComputed; -} - -interface KnockoutObservableArrayStatic { - fn: KnockoutObservableArrayFunctions; - - (value?: T[]): KnockoutObservableArray; -} - -interface KnockoutObservableArray extends KnockoutObservable, KnockoutObservableArrayFunctions { - extend(requestedExtenders: { [key: string]: any; }): KnockoutObservableArray; -} - -interface KnockoutObservableStatic { - fn: KnockoutObservableFunctions; - - (value?: T): KnockoutObservable; -} - -interface KnockoutObservable extends KnockoutSubscribable, KnockoutObservableFunctions { - (): T; - (value: T): void; - - peek(): T; - valueHasMutated?:{(): void;}; - valueWillMutate?:{(): void;}; - extend(requestedExtenders: { [key: string]: any; }): KnockoutObservable; -} - -interface KnockoutComputedDefine { - read(): T; - write? (value: T): void; - disposeWhenNodeIsRemoved?: Node; - disposeWhen? (): boolean; - owner?: any; - deferEvaluation?: boolean; - pure?: boolean; -} - -interface KnockoutBindingContext { - $parent: any; - $parents: any[]; - $root: any; - $data: any; - $rawData: any | KnockoutObservable; - $index?: KnockoutObservable; - $parentContext?: KnockoutBindingContext; - $component: any; - $componentTemplateNodes: Node[]; - - extend(properties: any): any; - createChildContext(dataItemOrAccessor: any, dataItemAlias?: any, extendCallback?: Function): any; -} - -interface KnockoutAllBindingsAccessor { - (): any; - get(name: string): any; - has(name: string): boolean; -} - -interface KnockoutBindingHandler { - after?: Array; - init?: (element: any, valueAccessor: () => any, allBindingsAccessor?: KnockoutAllBindingsAccessor, viewModel?: any, bindingContext?: KnockoutBindingContext) => void | { controlsDescendantBindings: boolean; }; - update?: (element: any, valueAccessor: () => any, allBindingsAccessor?: KnockoutAllBindingsAccessor, viewModel?: any, bindingContext?: KnockoutBindingContext) => void; - options?: any; - preprocess?: (value: string, name: string, addBindingCallback?: (name: string, value: string) => void) => string; -} - -interface KnockoutBindingHandlers { - [bindingHandler: string]: KnockoutBindingHandler; - - // Controlling text and appearance - visible: KnockoutBindingHandler; - text: KnockoutBindingHandler; - html: KnockoutBindingHandler; - css: KnockoutBindingHandler; - style: KnockoutBindingHandler; - attr: KnockoutBindingHandler; - - // Control Flow - foreach: KnockoutBindingHandler; - if: KnockoutBindingHandler; - ifnot: KnockoutBindingHandler; - with: KnockoutBindingHandler; - - // Working with form fields - click: KnockoutBindingHandler; - event: KnockoutBindingHandler; - submit: KnockoutBindingHandler; - enable: KnockoutBindingHandler; - disable: KnockoutBindingHandler; - value: KnockoutBindingHandler; - textInput: KnockoutBindingHandler; - hasfocus: KnockoutBindingHandler; - checked: KnockoutBindingHandler; - options: KnockoutBindingHandler; - selectedOptions: KnockoutBindingHandler; - uniqueName: KnockoutBindingHandler; - - // Rendering templates - template: KnockoutBindingHandler; - - // Components (new for v3.2) - component: KnockoutBindingHandler; -} - -interface KnockoutMemoization { - memoize(callback: () => string): string; - unmemoize(memoId: string, callbackParams: any[]): boolean; - unmemoizeDomNodeAndDescendants(domNode: any, extraCallbackParamsArray: any[]): boolean; - parseMemoText(memoText: string): string; -} - -interface KnockoutVirtualElement {} - -interface KnockoutVirtualElements { - allowedBindings: { [bindingName: string]: boolean; }; - emptyNode(node: KnockoutVirtualElement ): void; - firstChild(node: KnockoutVirtualElement ): KnockoutVirtualElement; - insertAfter( container: KnockoutVirtualElement, nodeToInsert: Node, insertAfter: Node ): void; - nextSibling(node: KnockoutVirtualElement): Node; - prepend(node: KnockoutVirtualElement, toInsert: Node ): void; - setDomNodeChildren(node: KnockoutVirtualElement, newChildren: { length: number;[index: number]: Node; } ): void; - childNodes(node: KnockoutVirtualElement ): Node[]; -} - -interface KnockoutExtenders { - throttle(target: any, timeout: number): KnockoutComputed; - notify(target: any, notifyWhen: string): any; - - rateLimit(target: any, timeout: number): any; - rateLimit(target: any, options: { timeout: number; method?: string; }): any; - - trackArrayChanges(target: any): any; -} - -// -// NOTE TO MAINTAINERS AND CONTRIBUTORS : pay attention to only include symbols that are -// publicly exported in the minified version of ko, without that you can give the false -// impression that some functions will be available in production builds. -// -interface KnockoutUtils { - ////////////////////////////////// - // utils.domData.js - ////////////////////////////////// - - domData: { - get (node: Element, key: string): any; - - set (node: Element, key: string, value: any): void; - - getAll(node: Element, createIfNotFound: boolean): any; - - clear(node: Element): boolean; - }; - - ////////////////////////////////// - // utils.domNodeDisposal.js - ////////////////////////////////// - - domNodeDisposal: { - addDisposeCallback(node: Element, callback: Function): void; - - removeDisposeCallback(node: Element, callback: Function): void; - - cleanNode(node: Node): Element; - - removeNode(node: Node): void; - }; - - addOrRemoveItem(array: T[] | KnockoutObservable, value: T, included: T): void; - - arrayFilter(array: T[], predicate: (item: T) => boolean): T[]; - - arrayFirst(array: T[], predicate: (item: T) => boolean, predicateOwner?: any): T; - - arrayForEach(array: T[], action: (item: T, index: number) => void): void; - - arrayGetDistinctValues(array: T[]): T[]; - - arrayIndexOf(array: T[], item: T): number; - - arrayMap(array: T[], mapping: (item: T) => U): U[]; - - arrayPushAll(array: T[] | KnockoutObservableArray, valuesToPush: T[]): T[]; - - arrayRemoveItem(array: any[], itemToRemove: any): void; - - compareArrays(a: T[], b: T[]): Array>; - - extend(target: Object, source: Object): Object; - - fieldsIncludedWithJsonPost: any[]; - - getFormFields(form: any, fieldName: string): any[]; - - objectForEach(obj: any, action: (key: any, value: any) => void): void; - - parseHtmlFragment(html: string): any[]; - - parseJson(jsonString: string): any; - - postJson(urlOrForm: any, data: any, options: any): void; - - peekObservable(value: KnockoutObservable): T; - - range(min: any, max: any): any; - - registerEventHandler(element: any, eventType: any, handler: Function): void; - - setHtml(node: Element, html: () => string): void; - - setHtml(node: Element, html: string): void; - - setTextContent(element: any, textContent: string | KnockoutObservable): void; - - stringifyJson(data: any, replacer?: Function, space?: string): string; - - toggleDomNodeCssClass(node: any, className: string, shouldHaveClass: boolean): void; - - triggerEvent(element: any, eventType: any): void; - - unwrapObservable(value: KnockoutObservable | T): T; - - // NOT PART OF THE MINIFIED API SURFACE (ONLY IN knockout-{version}.debug.js) https://github.com/SteveSanderson/knockout/issues/670 - // forceRefresh(node: any): void; - // ieVersion: number; - // isIe6: boolean; - // isIe7: boolean; - // jQueryHtmlParse(html: string): any[]; - // makeArray(arrayLikeObject: any): any[]; - // moveCleanedNodesToContainerElement(nodes: any[]): HTMLElement; - // replaceDomNodes(nodeToReplaceOrNodeArray: any, newNodesArray: any[]): void; - // setDomNodeChildren(domNode: any, childNodes: any[]): void; - // setElementName(element: any, name: string): void; - // setOptionNodeSelectionState(optionNode: any, isSelected: boolean): void; - // simpleHtmlParse(html: string): any[]; - // stringStartsWith(str: string, startsWith: string): boolean; - // stringTokenize(str: string, delimiter: string): string[]; - // stringTrim(str: string): string; - // tagNameLower(element: any): string; -} - -interface KnockoutArrayChange { - status: string; - value: T; - index: number; - moved?: number; -} - -////////////////////////////////// -// templateSources.js -////////////////////////////////// - -interface KnockoutTemplateSourcesDomElement { - text(): any; - text(value: any): void; - - data(key: string): any; - data(key: string, value: any): any; -} - -interface KnockoutTemplateAnonymous extends KnockoutTemplateSourcesDomElement { - nodes(): any; - nodes(value: any): void; -} - -interface KnockoutTemplateSources { - - domElement: { - prototype: KnockoutTemplateSourcesDomElement - new (element: Element): KnockoutTemplateSourcesDomElement - }; - - anonymousTemplate: { - prototype: KnockoutTemplateAnonymous; - new (element: Element): KnockoutTemplateAnonymous; - }; -} - -////////////////////////////////// -// nativeTemplateEngine.js -////////////////////////////////// - -interface KnockoutNativeTemplateEngine { - - renderTemplateSource(templateSource: Object, bindingContext?: KnockoutBindingContext, options?: Object): any[]; -} - -////////////////////////////////// -// templateEngine.js -////////////////////////////////// - -interface KnockoutTemplateEngine extends KnockoutNativeTemplateEngine { - - createJavaScriptEvaluatorBlock(script: string): string; - - makeTemplateSource(template: any, templateDocument?: Document): any; - - renderTemplate(template: any, bindingContext: KnockoutBindingContext, options: Object, templateDocument: Document): any; - - isTemplateRewritten(template: any, templateDocument: Document): boolean; - - rewriteTemplate(template: any, rewriterCallback: Function, templateDocument: Document): void; -} - -///////////////////////////////// - -interface KnockoutStatic { - utils: KnockoutUtils; - memoization: KnockoutMemoization; - - bindingHandlers: KnockoutBindingHandlers; - getBindingHandler(handler: string): KnockoutBindingHandler; - - virtualElements: KnockoutVirtualElements; - extenders: KnockoutExtenders; - - applyBindings(viewModelOrBindingContext?: any, rootNode?: any): void; - applyBindingsToDescendants(viewModelOrBindingContext: any, rootNode: any): void; - applyBindingAccessorsToNode(node: Node, bindings: (bindingContext: KnockoutBindingContext, node: Node) => {}, bindingContext: KnockoutBindingContext): void; - applyBindingAccessorsToNode(node: Node, bindings: {}, bindingContext: KnockoutBindingContext): void; - applyBindingAccessorsToNode(node: Node, bindings: (bindingContext: KnockoutBindingContext, node: Node) => {}, viewModel: any): void; - applyBindingAccessorsToNode(node: Node, bindings: {}, viewModel: any): void; - applyBindingsToNode(node: Node, bindings: any, viewModelOrBindingContext?: any): any; - - subscribable: KnockoutSubscribableStatic; - observable: KnockoutObservableStatic; - - computed: KnockoutComputedStatic; - pureComputed(evaluatorFunction: () => T, context?: any): KnockoutComputed; - pureComputed(options: KnockoutComputedDefine, context?: any): KnockoutComputed; - - observableArray: KnockoutObservableArrayStatic; - - contextFor(node: any): any; - isSubscribable(instance: any): boolean; - toJSON(viewModel: any, replacer?: Function, space?: any): string; - toJS(viewModel: any): any; - isObservable(instance: any): boolean; - isWriteableObservable(instance: any): boolean; - isComputed(instance: any): boolean; - dataFor(node: any): any; - removeNode(node: Element): void; - cleanNode(node: Element): Element; - renderTemplate(template: Function, viewModel: any, options?: any, target?: any, renderMode?: any): any; - renderTemplate(template: string, viewModel: any, options?: any, target?: any, renderMode?: any): any; - unwrap(value: KnockoutObservable | T): T; - - computedContext: KnockoutComputedContext; - - ////////////////////////////////// - // templateSources.js - ////////////////////////////////// - - templateSources: KnockoutTemplateSources; - - ////////////////////////////////// - // templateEngine.js - ////////////////////////////////// - - templateEngine: { - - prototype: KnockoutTemplateEngine; - - new (): KnockoutTemplateEngine; - }; - - ////////////////////////////////// - // templateRewriting.js - ////////////////////////////////// - - templateRewriting: { - - ensureTemplateIsRewritten(template: Node, templateEngine: KnockoutTemplateEngine, templateDocument: Document): any; - ensureTemplateIsRewritten(template: string, templateEngine: KnockoutTemplateEngine, templateDocument: Document): any; - - memoizeBindingAttributeSyntax(htmlString: string, templateEngine: KnockoutTemplateEngine): any; - - applyMemoizedBindingsToNextSibling(bindings: any, nodeName: string): string; - }; - - ////////////////////////////////// - // nativeTemplateEngine.js - ////////////////////////////////// - - nativeTemplateEngine: { - - prototype: KnockoutNativeTemplateEngine; - - new (): KnockoutNativeTemplateEngine; - - instance: KnockoutNativeTemplateEngine; - }; - - ////////////////////////////////// - // jqueryTmplTemplateEngine.js - ////////////////////////////////// - - jqueryTmplTemplateEngine: { - - prototype: KnockoutTemplateEngine; - - renderTemplateSource(templateSource: Object, bindingContext: KnockoutBindingContext, options: Object): Node[]; - - createJavaScriptEvaluatorBlock(script: string): string; - - addTemplate(templateName: string, templateMarkup: string): void; - }; - - ////////////////////////////////// - // templating.js - ////////////////////////////////// - - setTemplateEngine(templateEngine: KnockoutNativeTemplateEngine): void; - - renderTemplate(template: Function, dataOrBindingContext: KnockoutBindingContext, options: Object, targetNodeOrNodeArray: Node, renderMode: string): any; - renderTemplate(template: any, dataOrBindingContext: KnockoutBindingContext, options: Object, targetNodeOrNodeArray: Node, renderMode: string): any; - renderTemplate(template: Function, dataOrBindingContext: any, options: Object, targetNodeOrNodeArray: Node, renderMode: string): any; - renderTemplate(template: any, dataOrBindingContext: any, options: Object, targetNodeOrNodeArray: Node, renderMode: string): any; - renderTemplate(template: Function, dataOrBindingContext: KnockoutBindingContext, options: Object, targetNodeOrNodeArray: Node[], renderMode: string): any; - renderTemplate(template: any, dataOrBindingContext: KnockoutBindingContext, options: Object, targetNodeOrNodeArray: Node[], renderMode: string): any; - renderTemplate(template: Function, dataOrBindingContext: any, options: Object, targetNodeOrNodeArray: Node[], renderMode: string): any; - renderTemplate(template: any, dataOrBindingContext: any, options: Object, targetNodeOrNodeArray: Node[], renderMode: string): any; - - renderTemplateForEach(template: Function, arrayOrObservableArray: any[], options: Object, targetNode: Node, parentBindingContext: KnockoutBindingContext): any; - renderTemplateForEach(template: any, arrayOrObservableArray: any[], options: Object, targetNode: Node, parentBindingContext: KnockoutBindingContext): any; - renderTemplateForEach(template: Function, arrayOrObservableArray: KnockoutObservable, options: Object, targetNode: Node, parentBindingContext: KnockoutBindingContext): any; - renderTemplateForEach(template: any, arrayOrObservableArray: KnockoutObservable, options: Object, targetNode: Node, parentBindingContext: KnockoutBindingContext): any; - - expressionRewriting: { - bindingRewriteValidators: any; - parseObjectLiteral: { (objectLiteralString: string): any[] } - }; - - ///////////////////////////////// - - bindingProvider: { - instance: KnockoutBindingProvider; - new (): KnockoutBindingProvider; - } - - ///////////////////////////////// - // selectExtensions.js - ///////////////////////////////// - - selectExtensions: { - - readValue(element: HTMLElement): any; - - writeValue(element: HTMLElement, value: any): void; - }; - - components: KnockoutComponents; -} - -interface KnockoutBindingProvider { - nodeHasBindings(node: Node): boolean; - getBindings(node: Node, bindingContext: KnockoutBindingContext): {}; - getBindingAccessors?(node: Node, bindingContext: KnockoutBindingContext): { [key: string]: string; }; -} - -interface KnockoutComputedContext { - getDependenciesCount(): number; - isInitial: () => boolean; - isSleeping: boolean; -} - -// -// refactored types into a namespace to reduce global pollution -// and used Union Types to simplify overloads (requires TypeScript 1.4) -// -declare module KnockoutComponentTypes { - - interface Config { - viewModel?: ViewModelFunction | ViewModelSharedInstance | ViewModelFactoryFunction | AMDModule; - template: string | Node[]| DocumentFragment | TemplateElement | AMDModule; - synchronous?: boolean; - } - - interface ComponentConfig { - viewModel?: ViewModelFunction | ViewModelSharedInstance | ViewModelFactoryFunction | AMDModule; - template: any; - createViewModel?: any; - } - - interface EmptyConfig { - } - - // common AMD type - interface AMDModule { - require: string; - } - - // viewmodel types - interface ViewModelFunction { - (params?: any): any; - } - - interface ViewModelSharedInstance { - instance: any; - } - - interface ViewModelFactoryFunction { - createViewModel: (params?: any, componentInfo?: ComponentInfo) => any; - } - - interface ComponentInfo { - element: Node; - templateNodes: Node[]; - } - - interface TemplateElement { - element: string | Node; - } - - interface Loader { - getConfig? (componentName: string, callback: (result: ComponentConfig) => void): void; - loadComponent? (componentName: string, config: ComponentConfig, callback: (result: Definition) => void): void; - loadTemplate? (componentName: string, templateConfig: any, callback: (result: Node[]) => void): void; - loadViewModel? (componentName: string, viewModelConfig: any, callback: (result: any) => void): void; - suppressLoaderExceptions?: boolean; - } - - interface Definition { - template: Node[]; - createViewModel? (params: any, options: { element: Node; }): any; - } -} - -interface KnockoutComponents { - // overloads for register method: - register(componentName: string, config: KnockoutComponentTypes.Config | KnockoutComponentTypes.EmptyConfig): void; - - isRegistered(componentName: string): boolean; - unregister(componentName: string): void; - get(componentName: string, callback: (definition: KnockoutComponentTypes.Definition) => void): void; - clearCachedDefinition(componentName: string): void - defaultLoader: KnockoutComponentTypes.Loader; - loaders: KnockoutComponentTypes.Loader[]; - getComponentNameForNode(node: Node): string; -} - -declare var ko: KnockoutStatic; - -declare module "knockout" { - export = ko; -} diff --git a/samples/react-organisationchart/typings/lodash/lodash.d.ts b/samples/react-organisationchart/typings/lodash/lodash.d.ts deleted file mode 100644 index 1e39d223f..000000000 --- a/samples/react-organisationchart/typings/lodash/lodash.d.ts +++ /dev/null @@ -1,20808 +0,0 @@ -// Type definitions for Lo-Dash -// Project: http://lodash.com/ -// Definitions by: Brian Zengel , Ilya Mochalov , Stepan Mikhaylyuk -// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped - - -/** -### 4.0.0 Changelog (https://github.com/lodash/lodash/wiki/Changelog) - -#### TODO: -removed: -- [x] Removed _.support -- [x] Removed _.findWhere in favor of _.find with iteratee shorthand -- [x] Removed _.where in favor of _.filter with iteratee shorthand -- [x] Removed _.pluck in favor of _.map with iteratee shorthand - -renamed: -- [x] Renamed _.first to _.head -- [x] Renamed _.indexBy to _.keyBy -- [x] Renamed _.invoke to _.invokeMap -- [x] Renamed _.overArgs to _.overArgs -- [x] Renamed _.padLeft & _.padRight to _.padStart & _.padEnd -- [x] Renamed _.pairs to _.toPairs -- [x] Renamed _.rest to _.tail -- [x] Renamed _.restParam to _.rest -- [x] Renamed _.sortByOrder to _.orderBy -- [x] Renamed _.trimLeft & _.trimRight to _.trimStart & _.trimEnd -- [x] Renamed _.trunc to _.truncate - -split: -- [x] Split _.indexOf & _.lastIndexOf into _.sortedIndexOf & _.sortedLastIndexOf -- [x] Split _.max & _.min into _.maxBy & _.minBy -- [x] Split _.omit & _.pick into _.omitBy & _.pickBy -- [x] Split _.sample into _.sampleSize -- [x] Split _.sortedIndex into _.sortedIndexBy -- [x] Split _.sortedLastIndex into _.sortedLastIndexBy -- [x] Split _.uniq into _.sortedUniq, _.sortedUniqBy, & _.uniqBy - -changes: -- [x] Absorbed _.sortByAll into _.sortBy -- [x] Changed the category of _.at to “Object” -- [x] Changed the category of _.bindAll to “Utility” -- [x] Made _.capitalize uppercase the first character & lowercase the rest -- [x] Made _.functions return only own method names - - -added 23 array methods: -- [x] _.concat -- [x] _.differenceBy -- [x] _.differenceWith -- [x] _.flatMap -- [x] _.fromPairs -- [x] _.intersectionBy -- [x] _.intersectionWith -- [x] _.join -- [x] _.pullAll -- [x] _.pullAllBy -- [x] _.reverse -- [x] _.sortedIndexBy -- [x] _.sortedIndexOf -- [x] _.sortedLastIndexBy -- [x] _.sortedLastIndexOf -- [x] _.sortedUniq -- [x] _.sortedUniqBy -- [x] _.unionBy -- [x] _.unionWith -- [x] _.uniqBy -- [x] _.uniqWith -- [x] _.xorBy -- [x] _.xorWith - -added 18 lang methods: -- [x] _.cloneDeepWith -- [x] _.cloneWith -- [x] _.eq -- [x] _.isArrayLike -- [x] _.isArrayLikeObject -- [x] _.isEqualWith -- [x] _.isInteger -- [x] _.isLength -- [x] _.isMatchWith -- [x] _.isNil -- [x] _.isObjectLike -- [x] _.isSafeInteger -- [x] _.isSymbol -- [x] _.toInteger -- [x] _.toLength -- [x] _.toNumber -- [x] _.toSafeInteger -- [x] _.toString - -added 13 object methods: -- [x] _.assignIn -- [x] _.assignInWith -- [x] _.assignWith -- [x] _.functionsIn -- [x] _.hasIn -- [x] _.mergeWith -- [x] _.omitBy -- [x] _.pickBy - - -added 8 string methods: -- [x] _.lowerCase -- [x] _.lowerFirst -- [x] _.upperCase -- [x] _.upperFirst -- [x] _.toLower -- [x] _.toUpper - -added 8 utility methods: -- [x] _.toPath - -added 4 math methods: -- [x] _.maxBy -- [x] _.mean -- [x] _.minBy -- [x] _.sumBy - -added 2 function methods: -- [x] _.flip -- [x] _.unary - -added 2 number methods: -- [x] _.clamp -- [x] _.subtract - -added collection method: -- [x] _.sampleSize - -Added 3 aliases - -- [x] _.first as an alias of _.head - -Removed 17 aliases -- [x] Removed aliase _.all -- [x] Removed aliase _.any -- [x] Removed aliase _.backflow -- [x] Removed aliase _.callback -- [x] Removed aliase _.collect -- [x] Removed aliase _.compose -- [x] Removed aliase _.contains -- [x] Removed aliase _.detect -- [x] Removed aliase _.foldl -- [x] Removed aliase _.foldr -- [x] Removed aliase _.include -- [x] Removed aliase _.inject -- [x] Removed aliase _.methods -- [x] Removed aliase _.object -- [x] Removed aliase _.run -- [x] Removed aliase _.select -- [x] Removed aliase _.unique - -Other changes -- [x] Added support for array buffers to _.isEqual -- [x] Added support for converting iterators to _.toArray -- [x] Added support for deep paths to _.zipObject -- [x] Changed UMD to export to window or self when available regardless of other exports -- [x] Ensured debounce cancel clears args & thisArg references -- [x] Ensured _.add, _.subtract, & _.sum don’t skip NaN values -- [x] Ensured _.clone treats generators like functions -- [x] Ensured _.clone produces clones with the source’s [[Prototype]] -- [x] Ensured _.defaults assigns properties that shadow Object.prototype -- [x] Ensured _.defaultsDeep doesn’t merge a string into an array -- [x] Ensured _.defaultsDeep & _.merge don’t modify sources -- [x] Ensured _.defaultsDeep works with circular references -- [x] Ensured _.keys skips “length” on strict mode arguments objects in Safari 9 -- [x] Ensured _.merge doesn’t convert strings to arrays -- [x] Ensured _.merge merges plain-objects onto non plain-objects -- [x] Ensured _#plant resets iterator data of cloned sequences -- [x] Ensured _.random swaps min & max if min is greater than max -- [x] Ensured _.range preserves the sign of start of -0 -- [x] Ensured _.reduce & _.reduceRight use getIteratee in their array branch -- [x] Fixed rounding issue with the precision param of _.floor - -** LATER ** -Misc: -- [ ] Made _.forEach, _.forIn, _.forOwn, & _.times implicitly end a chain sequence -- [ ] Removed thisArg params from most methods -- [ ] Made “By” methods provide a single param to iteratees -- [ ] Made _.words chainable by default -- [ ] Removed isDeep params from _.clone & _.flatten -- [ ] Removed _.bindAll support for binding all methods when no names are provided -- [ ] Removed func-first param signature from _.before & _.after -- [ ] _.extend as an alias of _.assignIn -- [ ] _.extendWith as an alias of _.assignInWith -- [ ] Added clear method to _.memoize.Cache -- [ ] Added flush method to debounced & throttled functions -- [ ] Added support for ES6 maps, sets, & symbols to _.clone, _.isEqual, & _.toArray -- [ ] Enabled _.flow & _.flowRight to accept an array of functions -- [ ] Ensured “Collection” methods treat functions as objects -- [ ] Ensured _.assign, _.defaults, & _.merge coerce object values to objects -- [ ] Ensured _.bindKey bound functions call object[key] when called with the new operator -- [ ] Ensured _.isFunction returns true for generator functions -- [ ] Ensured _.merge assigns typed arrays directly -- [ ] Made _(...) an iterator & iterable -- [ ] Made _.drop, _.take, & right forms coerce n of undefined to 0 - -Methods: -- [ ] _.concat -- [ ] _.differenceBy -- [ ] _.differenceWith -- [ ] _.flatMap -- [ ] _.fromPairs -- [ ] _.intersectionBy -- [ ] _.intersectionWith -- [ ] _.join -- [ ] _.pullAll -- [ ] _.pullAllBy -- [ ] _.reverse -- [ ] _.sortedLastIndexOf -- [ ] _.unionBy -- [ ] _.unionWith -- [ ] _.uniqWith -- [ ] _.xorBy -- [ ] _.xorWith -- [ ] _.toString - -- [ ] _.invoke -- [ ] _.setWith -- [ ] _.toPairs -- [ ] _.toPairsIn -- [ ] _.unset - -- [ ] _.replace -- [ ] _.split - -- [ ] _.cond -- [ ] _.conforms -- [ ] _.nthArg -- [ ] _.over -- [ ] _.overEvery -- [ ] _.overSome -- [ ] _.rangeRight - -- [ ] _.next -*/ - -declare var _: _.LoDashStatic; - -declare module _ { - interface LoDashStatic { - /** - * Creates a lodash object which wraps the given value to enable intuitive method chaining. - * - * In addition to Lo-Dash methods, wrappers also have the following Array methods: - * concat, join, pop, push, reverse, shift, slice, sort, splice, and unshift - * - * Chaining is supported in custom builds as long as the value method is implicitly or - * explicitly included in the build. - * - * The chainable wrapper functions are: - * after, assign, bind, bindAll, bindKey, chain, chunk, compact, compose, concat, countBy, - * createCallback, curry, debounce, defaults, defer, delay, difference, filter, flatten, - * forEach, forEachRight, forIn, forInRight, forOwn, forOwnRight, functions, groupBy, - * keyBy, initial, intersection, invert, invoke, keys, map, max, memoize, merge, min, - * object, omit, once, pairs, partial, partialRight, pick, pluck, pull, push, range, reject, - * remove, rest, reverse, sample, shuffle, slice, sort, sortBy, splice, tap, throttle, times, - * toArray, transform, union, uniq, unset, unshift, unzip, values, where, without, wrap, and zip - * - * The non-chainable wrapper functions are: - * clone, cloneDeep, contains, escape, every, find, findIndex, findKey, findLast, - * findLastIndex, findLastKey, has, identity, indexOf, isArguments, isArray, isBoolean, - * isDate, isElement, isEmpty, isEqual, isFinite, isFunction, isNaN, isNull, isNumber, - * isObject, isPlainObject, isRegExp, isString, isUndefined, join, lastIndexOf, mixin, - * noConflict, parseInt, pop, random, reduce, reduceRight, result, shift, size, some, - * sortedIndex, runInContext, template, unescape, uniqueId, and value - * - * The wrapper functions first and last return wrapped values when n is provided, otherwise - * they return unwrapped values. - * - * Explicit chaining can be enabled by using the _.chain method. - **/ - (value: number): LoDashImplicitWrapper; - (value: string): LoDashImplicitStringWrapper; - (value: boolean): LoDashImplicitWrapper; - (value: Array): LoDashImplicitNumberArrayWrapper; - (value: Array): LoDashImplicitArrayWrapper; - (value: T): LoDashImplicitObjectWrapper; - (value: any): LoDashImplicitWrapper; - - /** - * The semantic version number. - **/ - VERSION: string; - - /** - * By default, the template delimiters used by Lo-Dash are similar to those in embedded Ruby - * (ERB). Change the following template settings to use alternative delimiters. - **/ - templateSettings: TemplateSettings; - } - - /** - * By default, the template delimiters used by Lo-Dash are similar to those in embedded Ruby - * (ERB). Change the following template settings to use alternative delimiters. - **/ - interface TemplateSettings { - /** - * The "escape" delimiter. - **/ - escape?: RegExp; - - /** - * The "evaluate" delimiter. - **/ - evaluate?: RegExp; - - /** - * An object to import into the template as local variables. - **/ - imports?: Dictionary; - - /** - * The "interpolate" delimiter. - **/ - interpolate?: RegExp; - - /** - * Used to reference the data object in the template text. - **/ - variable?: string; - } - - /** - * Creates a cache object to store key/value pairs. - */ - interface MapCache { - /** - * Removes `key` and its value from the cache. - * @param key The key of the value to remove. - * @return Returns `true` if the entry was removed successfully, else `false`. - */ - delete(key: string): boolean; - - /** - * Gets the cached value for `key`. - * @param key The key of the value to get. - * @return Returns the cached value. - */ - get(key: string): any; - - /** - * Checks if a cached value for `key` exists. - * @param key The key of the entry to check. - * @return Returns `true` if an entry for `key` exists, else `false`. - */ - has(key: string): boolean; - - /** - * Sets `value` to `key` of the cache. - * @param key The key of the value to cache. - * @param value The value to cache. - * @return Returns the cache object. - */ - set(key: string, value: any): _.Dictionary; - } - - interface LoDashWrapperBase { } - - interface LoDashImplicitWrapperBase extends LoDashWrapperBase { } - - interface LoDashExplicitWrapperBase extends LoDashWrapperBase { } - - interface LoDashImplicitWrapper extends LoDashImplicitWrapperBase> { } - - interface LoDashExplicitWrapper extends LoDashExplicitWrapperBase> { } - - interface LoDashImplicitStringWrapper extends LoDashImplicitWrapper { } - - interface LoDashExplicitStringWrapper extends LoDashExplicitWrapper { } - - interface LoDashImplicitObjectWrapper extends LoDashImplicitWrapperBase> { } - - interface LoDashExplicitObjectWrapper extends LoDashExplicitWrapperBase> { } - - interface LoDashImplicitArrayWrapper extends LoDashImplicitWrapperBase> { - pop(): T; - push(...items: T[]): LoDashImplicitArrayWrapper; - shift(): T; - sort(compareFn?: (a: T, b: T) => number): LoDashImplicitArrayWrapper; - splice(start: number): LoDashImplicitArrayWrapper; - splice(start: number, deleteCount: number, ...items: any[]): LoDashImplicitArrayWrapper; - unshift(...items: T[]): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper extends LoDashExplicitWrapperBase> { } - - interface LoDashImplicitNumberArrayWrapper extends LoDashImplicitArrayWrapper { } - - interface LoDashExplicitNumberArrayWrapper extends LoDashExplicitArrayWrapper { } - - /********* - * Array * - *********/ - - //_.chunk - interface LoDashStatic { - /** - * Creates an array of elements split into groups the length of size. If collection can’t be split evenly, the - * final chunk will be the remaining elements. - * - * @param array The array to process. - * @param size The length of each chunk. - * @return Returns the new array containing chunks. - */ - chunk( - array: List, - size?: number - ): T[][]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.chunk - */ - chunk(size?: number): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.chunk - */ - chunk(size?: number): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.chunk - */ - chunk(size?: number): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.chunk - */ - chunk(size?: number): LoDashExplicitArrayWrapper; - } - - //_.compact - interface LoDashStatic { - /** - * Creates an array with all falsey values removed. The values false, null, 0, "", undefined, and NaN are - * falsey. - * - * @param array The array to compact. - * @return (Array) Returns the new array of filtered values. - */ - compact(array?: List): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.compact - */ - compact(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.compact - */ - compact(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.compact - */ - compact(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.compact - */ - compact(): LoDashExplicitArrayWrapper; - } - - //_.concat DUMMY - interface LoDashStatic { - /** - * Creates a new array concatenating `array` with any additional arrays - * and/or values. - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The array to concatenate. - * @param {...*} [values] The values to concatenate. - * @returns {Array} Returns the new concatenated array. - * @example - * - * var array = [1]; - * var other = _.concat(array, 2, [3], [[4]]); - * - * console.log(other); - * // => [1, 2, 3, [4]] - * - * console.log(array); - * // => [1] - */ - concat(...values: (T[]|List)[]) : T[]; - } - - //_.difference - interface LoDashStatic { - /** - * Creates an array of unique array values not included in the other provided arrays using SameValueZero for - * equality comparisons. - * - * @param array The array to inspect. - * @param values The arrays of values to exclude. - * @return Returns the new array of filtered values. - */ - difference( - array: T[]|List, - ...values: Array> - ): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.difference - */ - difference(...values: (T[]|List)[]): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.difference - */ - difference(...values: (TValue[]|List)[]): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.difference - */ - difference(...values: (T[]|List)[]): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.difference - */ - difference(...values: (TValue[]|List)[]): LoDashExplicitArrayWrapper; - } - - //_.differenceBy - interface LoDashStatic { - /** - * This method is like _.difference except that it accepts iteratee which is invoked for each element of array - * and values to generate the criterion by which uniqueness is computed. The iteratee is invoked with one - * argument: (value). - * - * @param array The array to inspect. - * @param values The values to exclude. - * @param iteratee The iteratee invoked per element. - * @returns Returns the new array of filtered values. - */ - differenceBy( - array: T[]|List, - values?: T[]|List, - iteratee?: ((value: T) => any)|string - ): T[]; - - /** - * @see _.differenceBy - */ - differenceBy( - array: T[]|List, - values?: T[]|List, - iteratee?: W - ): T[]; - - /** - * @see _.differenceBy - */ - differenceBy( - array: T[]|List, - values1?: T[]|List, - values2?: T[]|List, - iteratee?: ((value: T) => any)|string - ): T[]; - - /** - * @see _.differenceBy - */ - differenceBy( - array: T[]|List, - values1?: T[]|List, - values2?: T[]|List, - iteratee?: W - ): T[]; - - /** - * @see _.differenceBy - */ - differenceBy( - array: T[]|List, - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - iteratee?: ((value: T) => any)|string - ): T[]; - - /** - * @see _.differenceBy - */ - differenceBy( - array: T[]|List, - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - iteratee?: W - ): T[]; - - /** - * @see _.differenceBy - */ - differenceBy( - array: T[]|List, - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - iteratee?: W - ): T[]; - - /** - * @see _.differenceBy - */ - differenceBy( - array: T[]|List, - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - iteratee?: ((value: T) => any)|string - ): T[]; - - /** - * @see _.differenceBy - */ - differenceBy( - array: T[]|List, - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - values5?: T[]|List, - iteratee?: ((value: T) => any)|string - ): T[]; - - /** - * @see _.differenceBy - */ - differenceBy( - array: T[]|List, - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - values5?: T[]|List, - iteratee?: W - ): T[]; - - /** - * @see _.differenceBy - */ - differenceBy( - array: T[]|List, - ...values: any[] - ): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.differenceBy - */ - differenceBy( - values?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values?: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - values5?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - values5?: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - ...values: any[] - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.differenceBy - */ - differenceBy( - values?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values?: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - values5?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - values5?: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - ...values: any[] - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.differenceBy - */ - differenceBy( - values?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values?: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - values5?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - values5?: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - ...values: any[] - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.differenceBy - */ - differenceBy( - values?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values?: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - values5?: T[]|List, - iteratee?: ((value: T) => any)|string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - values1?: T[]|List, - values2?: T[]|List, - values3?: T[]|List, - values4?: T[]|List, - values5?: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.differenceBy - */ - differenceBy( - ...values: any[] - ): LoDashExplicitArrayWrapper; - } - - //_.differenceWith DUMMY - interface LoDashStatic { - /** - * Creates an array of unique `array` values not included in the other - * provided arrays using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) - * for equality comparisons. - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The array to inspect. - * @param {...Array} [values] The values to exclude. - * @returns {Array} Returns the new array of filtered values. - * @example - * - * _.difference([3, 2, 1], [4, 2]); - * // => [3, 1] - */ - differenceWith( - array: any[]|List, - ...values: any[] - ): any[]; - } - - //_.drop - interface LoDashStatic { - /** - * Creates a slice of array with n elements dropped from the beginning. - * - * @param array The array to query. - * @param n The number of elements to drop. - * @return Returns the slice of array. - */ - drop(array: T[]|List, n?: number): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.drop - */ - drop(n?: number): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.drop - */ - drop(n?: number): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.drop - */ - drop(n?: number): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.drop - */ - drop(n?: number): LoDashExplicitArrayWrapper; - } - - //_.dropRight - interface LoDashStatic { - /** - * Creates a slice of array with n elements dropped from the end. - * - * @param array The array to query. - * @param n The number of elements to drop. - * @return Returns the slice of array. - */ - dropRight( - array: List, - n?: number - ): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.dropRight - */ - dropRight(n?: number): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.dropRight - */ - dropRight(n?: number): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.dropRight - */ - dropRight(n?: number): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.dropRight - */ - dropRight(n?: number): LoDashExplicitArrayWrapper; - } - - //_.dropRightWhile - interface LoDashStatic { - /** - * Creates a slice of array excluding elements dropped from the end. Elements are dropped until predicate - * returns falsey. The predicate is bound to thisArg and invoked with three arguments: (value, index, array). - * - * If a property name is provided for predicate the created _.property style callback returns the property - * value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for predicate the created _.matches style callback returns true for elements that - * match the properties of the given object, else false. - * - * @param array The array to query. - * @param predicate The function invoked per iteration. - * @param thisArg The this binding of predicate. - * @return Returns the slice of array. - */ - dropRightWhile( - array: List, - predicate?: ListIterator - ): TValue[]; - - /** - * @see _.dropRightWhile - */ - dropRightWhile( - array: List, - predicate?: string - ): TValue[]; - - /** - * @see _.dropRightWhile - */ - dropRightWhile( - array: List, - predicate?: TWhere - ): TValue[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.dropRightWhile - */ - dropRightWhile( - predicate?: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.dropRightWhile - */ - dropRightWhile( - predicate?: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.dropRightWhile - */ - dropRightWhile( - predicate?: TWhere - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.dropRightWhile - */ - dropRightWhile( - predicate?: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.dropRightWhile - */ - dropRightWhile( - predicate?: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.dropRightWhile - */ - dropRightWhile( - predicate?: TWhere - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.dropRightWhile - */ - dropRightWhile( - predicate?: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.dropRightWhile - */ - dropRightWhile( - predicate?: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.dropRightWhile - */ - dropRightWhile( - predicate?: TWhere - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.dropRightWhile - */ - dropRightWhile( - predicate?: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.dropRightWhile - */ - dropRightWhile( - predicate?: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.dropRightWhile - */ - dropRightWhile( - predicate?: TWhere - ): LoDashExplicitArrayWrapper; - } - - //_.dropWhile - interface LoDashStatic { - /** - * Creates a slice of array excluding elements dropped from the beginning. Elements are dropped until predicate - * returns falsey. The predicate is bound to thisArg and invoked with three arguments: (value, index, array). - * - * If a property name is provided for predicate the created _.property style callback returns the property - * value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for predicate the created _.matches style callback returns true for elements that - * have the properties of the given object, else false. - * - * @param array The array to query. - * @param predicate The function invoked per iteration. - * @param thisArg The this binding of predicate. - * @return Returns the slice of array. - */ - dropWhile( - array: List, - predicate?: ListIterator - ): TValue[]; - - /** - * @see _.dropWhile - */ - dropWhile( - array: List, - predicate?: string - ): TValue[]; - - /** - * @see _.dropWhile - */ - dropWhile( - array: List, - predicate?: TWhere - ): TValue[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.dropWhile - */ - dropWhile( - predicate?: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.dropWhile - */ - dropWhile( - predicate?: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.dropWhile - */ - dropWhile( - predicate?: TWhere - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.dropWhile - */ - dropWhile( - predicate?: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.dropWhile - */ - dropWhile( - predicate?: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.dropWhile - */ - dropWhile( - predicate?: TWhere - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.dropWhile - */ - dropWhile( - predicate?: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.dropWhile - */ - dropWhile( - predicate?: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.dropWhile - */ - dropWhile( - predicate?: TWhere - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.dropWhile - */ - dropWhile( - predicate?: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.dropWhile - */ - dropWhile( - predicate?: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.dropWhile - */ - dropWhile( - predicate?: TWhere - ): LoDashExplicitArrayWrapper; - } - - //_.fill - interface LoDashStatic { - /** - * Fills elements of array with value from start up to, but not including, end. - * - * Note: This method mutates array. - * - * @param array The array to fill. - * @param value The value to fill array with. - * @param start The start position. - * @param end The end position. - * @return Returns array. - */ - fill( - array: any[], - value: T, - start?: number, - end?: number - ): T[]; - - /** - * @see _.fill - */ - fill( - array: List, - value: T, - start?: number, - end?: number - ): List; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.fill - */ - fill( - value: T, - start?: number, - end?: number - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.fill - */ - fill( - value: T, - start?: number, - end?: number - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.fill - */ - fill( - value: T, - start?: number, - end?: number - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.fill - */ - fill( - value: T, - start?: number, - end?: number - ): LoDashExplicitObjectWrapper>; - } - - //_.findIndex - interface LoDashStatic { - /** - * This method is like _.find except that it returns the index of the first element predicate returns truthy - * for instead of the element itself. - * - * If a property name is provided for predicate the created _.property style callback returns the property - * value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for predicate the created _.matches style callback returns true for elements that - * have the properties of the given object, else false. - * - * @param array The array to search. - * @param predicate The function invoked per iteration. - * @param thisArg The this binding of predicate. - * @return Returns the index of the found element, else -1. - */ - findIndex( - array: List, - predicate?: ListIterator - ): number; - - /** - * @see _.findIndex - */ - findIndex( - array: List, - predicate?: string - ): number; - - /** - * @see _.findIndex - */ - findIndex( - array: List, - predicate?: W - ): number; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.findIndex - */ - findIndex( - predicate?: ListIterator - ): number; - - /** - * @see _.findIndex - */ - findIndex( - predicate?: string - ): number; - - /** - * @see _.findIndex - */ - findIndex( - predicate?: W - ): number; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.findIndex - */ - findIndex( - predicate?: ListIterator - ): number; - - /** - * @see _.findIndex - */ - findIndex( - predicate?: string - ): number; - - /** - * @see _.findIndex - */ - findIndex( - predicate?: W - ): number; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.findIndex - */ - findIndex( - predicate?: ListIterator - ): LoDashExplicitWrapper; - - /** - * @see _.findIndex - */ - findIndex( - predicate?: string - ): LoDashExplicitWrapper; - - /** - * @see _.findIndex - */ - findIndex( - predicate?: W - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.findIndex - */ - findIndex( - predicate?: ListIterator - ): LoDashExplicitWrapper; - - /** - * @see _.findIndex - */ - findIndex( - predicate?: string - ): LoDashExplicitWrapper; - - /** - * @see _.findIndex - */ - findIndex( - predicate?: W - ): LoDashExplicitWrapper; - } - - //_.findLastIndex - interface LoDashStatic { - /** - * This method is like _.findIndex except that it iterates over elements of collection from right to left. - * - * If a property name is provided for predicate the created _.property style callback returns the property - * value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for predicate the created _.matches style callback returns true for elements that - * have the properties of the given object, else false. - * - * @param array The array to search. - * @param predicate The function invoked per iteration. - * @param thisArg The function invoked per iteration. - * @return Returns the index of the found element, else -1. - */ - findLastIndex( - array: List, - predicate?: ListIterator - ): number; - - /** - * @see _.findLastIndex - */ - findLastIndex( - array: List, - predicate?: string - ): number; - - /** - * @see _.findLastIndex - */ - findLastIndex( - array: List, - predicate?: W - ): number; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.findLastIndex - */ - findLastIndex( - predicate?: ListIterator - ): number; - - /** - * @see _.findLastIndex - */ - findLastIndex( - predicate?: string - ): number; - - /** - * @see _.findLastIndex - */ - findLastIndex( - predicate?: W - ): number; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.findLastIndex - */ - findLastIndex( - predicate?: ListIterator - ): number; - - /** - * @see _.findLastIndex - */ - findLastIndex( - predicate?: string - ): number; - - /** - * @see _.findLastIndex - */ - findLastIndex( - predicate?: W - ): number; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.findLastIndex - */ - findLastIndex( - predicate?: ListIterator - ): LoDashExplicitWrapper; - - /** - * @see _.findLastIndex - */ - findLastIndex( - predicate?: string - ): LoDashExplicitWrapper; - - /** - * @see _.findLastIndex - */ - findLastIndex( - predicate?: W - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.findLastIndex - */ - findLastIndex( - predicate?: ListIterator - ): LoDashExplicitWrapper; - - /** - * @see _.findLastIndex - */ - findLastIndex( - predicate?: string - ): LoDashExplicitWrapper; - - /** - * @see _.findLastIndex - */ - findLastIndex( - predicate?: W - ): LoDashExplicitWrapper; - } - - //_.first - interface LoDashStatic { - /** - * @see _.head - */ - first(array: List): T; - } - - interface LoDashImplicitWrapper { - /** - * @see _.head - */ - first(): string; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.head - */ - first(): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.head - */ - first(): T; - } - - interface LoDashExplicitWrapper { - /** - * @see _.head - */ - first(): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.head - */ - first(): T; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.head - */ - first(): T; - } - - interface RecursiveArray extends Array> {} - interface ListOfRecursiveArraysOrValues extends List> {} - - //_.flatten - interface LoDashStatic { - /** - * Flattens a nested array. If isDeep is true the array is recursively flattened, otherwise it’s only - * flattened a single level. - * - * @param array The array to flatten. - * @param isDeep Specify a deep flatten. - * @return Returns the new flattened array. - */ - flatten(array: ListOfRecursiveArraysOrValues, isDeep: boolean): T[]; - - /** - * @see _.flatten - */ - flatten(array: List): T[]; - - /** - * @see _.flatten - */ - flatten(array: ListOfRecursiveArraysOrValues): RecursiveArray; - } - - interface LoDashImplicitWrapper { - /** - * @see _.flatten - */ - flatten(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.flatten - */ - flatten(isDeep?: boolean): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.flatten - */ - flatten(isDeep?: boolean): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.flatten - */ - flatten(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.flatten - */ - flatten(isDeep?: boolean): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.flatten - */ - flatten(isDeep?: boolean): LoDashExplicitArrayWrapper; - } - - //_.flattenDeep - interface LoDashStatic { - /** - * Recursively flattens a nested array. - * - * @param array The array to recursively flatten. - * @return Returns the new flattened array. - */ - flattenDeep(array: ListOfRecursiveArraysOrValues): T[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.flattenDeep - */ - flattenDeep(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.flattenDeep - */ - flattenDeep(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.flattenDeep - */ - flattenDeep(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.flattenDeep - */ - flattenDeep(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.flattenDeep - */ - flattenDeep(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.flattenDeep - */ - flattenDeep(): LoDashExplicitArrayWrapper; - } - - //_.fromPairs DUMMY - interface LoDashStatic { - /** - * The inverse of `_.toPairs`; this method returns an object composed - * from key-value `pairs`. - * - * @static - * @memberOf _ - * @category Array - * @param {Array} pairs The key-value pairs. - * @returns {Object} Returns the new object. - * @example - * - * _.fromPairs([['fred', 30], ['barney', 40]]); - * // => { 'fred': 30, 'barney': 40 } - */ - fromPairs( - array: any[]|List - ): Dictionary; - } - - //_.fromPairs DUMMY - interface LoDashImplicitArrayWrapper { - /** - * @see _.fromPairs - */ - fromPairs(): LoDashImplicitObjectWrapper; - } - - //_.fromPairs DUMMY - interface LoDashExplicitArrayWrapper { - /** - * @see _.fromPairs - */ - fromPairs(): LoDashExplicitObjectWrapper; - } - - //_.head - interface LoDashStatic { - /** - * Gets the first element of array. - * - * @alias _.first - * - * @param array The array to query. - * @return Returns the first element of array. - */ - head(array: List): T; - } - - interface LoDashImplicitWrapper { - /** - * @see _.head - */ - head(): string; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.head - */ - head(): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.head - */ - head(): T; - } - - interface LoDashExplicitWrapper { - /** - * @see _.head - */ - head(): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.head - */ - head(): T; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.head - */ - head(): T; - } - - //_.indexOf - interface LoDashStatic { - /** - * Gets the index at which the first occurrence of `value` is found in `array` - * using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) - * for equality comparisons. If `fromIndex` is negative, it's used as the offset - * from the end of `array`. If `array` is sorted providing `true` for `fromIndex` - * performs a faster binary search. - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The array to search. - * @param {*} value The value to search for. - * @param {number} [fromIndex=0] The index to search from. - * @returns {number} Returns the index of the matched value, else `-1`. - * @example - * - * _.indexOf([1, 2, 1, 2], 2); - * // => 1 - * - * // using `fromIndex` - * _.indexOf([1, 2, 1, 2], 2, 2); - * // => 3 - */ - indexOf( - array: List, - value: T, - fromIndex?: boolean|number - ): number; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.indexOf - */ - indexOf( - value: T, - fromIndex?: boolean|number - ): number; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.indexOf - */ - indexOf( - value: TValue, - fromIndex?: boolean|number - ): number; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.indexOf - */ - indexOf( - value: T, - fromIndex?: boolean|number - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.indexOf - */ - indexOf( - value: TValue, - fromIndex?: boolean|number - ): LoDashExplicitWrapper; - } - - //_.intersectionBy DUMMY - interface LoDashStatic { - /** - * This method is like `_.intersection` except that it accepts `iteratee` - * which is invoked for each element of each `arrays` to generate the criterion - * by which uniqueness is computed. The iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. - * @returns {Array} Returns the new array of shared values. - * @example - * - * _.intersectionBy([2.1, 1.2], [4.3, 2.4], Math.floor); - * // => [2.1] - * - * // using the `_.property` iteratee shorthand - * _.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); - * // => [{ 'x': 1 }] - */ - intersectionBy( - array: any[]|List, - ...values: any[] - ): any[]; - } - - //_.intersectionWith DUMMY - interface LoDashStatic { - /** - * This method is like `_.intersection` except that it accepts `comparator` - * which is invoked to compare elements of `arrays`. The comparator is invoked - * with two arguments: (arrVal, othVal). - * - * @static - * @memberOf _ - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new array of shared values. - * @example - * - * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; - * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; - * - * _.intersectionWith(objects, others, _.isEqual); - * // => [{ 'x': 1, 'y': 2 }] - */ - intersectionWith( - array: any[]|List, - ...values: any[] - ): any[]; - } - - //_.join - interface LoDashStatic { - /** - * Converts all elements in `array` into a string separated by `separator`. - * - * @param array The array to convert. - * @param separator The element separator. - * @returns Returns the joined string. - */ - join( - array: List, - separator?: string - ): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.join - */ - join(separator?: string): string; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.join - */ - join(separator?: string): string; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.join - */ - join(separator?: string): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.join - */ - join(separator?: string): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.join - */ - join(separator?: string): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.join - */ - join(separator?: string): LoDashExplicitWrapper; - } - - //_.pullAll DUMMY - interface LoDashStatic { - /** - * This method is like `_.pull` except that it accepts an array of values to remove. - * - * **Note:** Unlike `_.difference`, this method mutates `array`. - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The array to modify. - * @param {Array} values The values to remove. - * @returns {Array} Returns `array`. - * @example - * - * var array = [1, 2, 3, 1, 2, 3]; - * - * _.pull(array, [2, 3]); - * console.log(array); - * // => [1, 1] - */ - pullAll( - array: any[]|List, - ...values: any[] - ): any[]; - } - - //_.pullAllBy DUMMY - interface LoDashStatic { - /** - * This method is like `_.pullAll` except that it accepts `iteratee` which is - * invoked for each element of `array` and `values` to to generate the criterion - * by which uniqueness is computed. The iteratee is invoked with one argument: (value). - * - * **Note:** Unlike `_.differenceBy`, this method mutates `array`. - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The array to modify. - * @param {Array} values The values to remove. - * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. - * @returns {Array} Returns `array`. - * @example - * - * var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }]; - * - * _.pullAllBy(array, [{ 'x': 1 }, { 'x': 3 }], 'x'); - * console.log(array); - * // => [{ 'x': 2 }] - */ - pullAllBy( - array: any[]|List, - ...values: any[] - ): any[]; - } - - //_.reverse DUMMY - interface LoDashStatic { - /** - * Reverses `array` so that the first element becomes the last, the second - * element becomes the second to last, and so on. - * - * **Note:** This method mutates `array` and is based on - * [`Array#reverse`](https://mdn.io/Array/reverse). - * - * @memberOf _ - * @category Array - * @returns {Array} Returns `array`. - * @example - * - * var array = [1, 2, 3]; - * - * _.reverse(array); - * // => [3, 2, 1] - * - * console.log(array); - * // => [3, 2, 1] - */ - reverse( - array: any[]|List, - ...values: any[] - ): any[]; - } - - //_.sortedIndexOf - interface LoDashStatic { - /** - * This method is like `_.indexOf` except that it performs a binary - * search on a sorted `array`. - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The array to search. - * @param {*} value The value to search for. - * @returns {number} Returns the index of the matched value, else `-1`. - * @example - * - * _.sortedIndexOf([1, 1, 2, 2], 2); - * // => 2 - */ - sortedIndexOf( - array: List, - value: T - ): number; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.sortedIndexOf - */ - sortedIndexOf( - value: T - ): number; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.sortedIndexOf - */ - sortedIndexOf( - value: TValue - ): number; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.sortedIndexOf - */ - sortedIndexOf( - value: T - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.sortedIndexOf - */ - sortedIndexOf( - value: TValue - ): LoDashExplicitWrapper; - } - - //_.initial - interface LoDashStatic { - /** - * Gets all but the last element of array. - * - * @param array The array to query. - * @return Returns the slice of array. - */ - initial(array: List): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.initial - */ - initial(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.initial - */ - initial(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.initial - */ - initial(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.initial - */ - initial(): LoDashExplicitArrayWrapper; - } - - //_.intersection - interface LoDashStatic { - /** - * Creates an array of unique values that are included in all of the provided arrays using SameValueZero for - * equality comparisons. - * - * @param arrays The arrays to inspect. - * @return Returns the new array of shared values. - */ - intersection(...arrays: (T[]|List)[]): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.intersection - */ - intersection(...arrays: (TResult[]|List)[]): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.intersection - */ - intersection(...arrays: (TResult[]|List)[]): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.intersection - */ - intersection(...arrays: (TResult[]|List)[]): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.intersection - */ - intersection(...arrays: (TResult[]|List)[]): LoDashExplicitArrayWrapper; - } - - //_.last - interface LoDashStatic { - /** - * Gets the last element of array. - * - * @param array The array to query. - * @return Returns the last element of array. - */ - last(array: List): T; - } - - interface LoDashImplicitWrapper { - /** - * @see _.last - */ - last(): string; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.last - */ - last(): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.last - */ - last(): T; - } - - interface LoDashExplicitWrapper { - /** - * @see _.last - */ - last(): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.last - */ - last(): T; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.last - */ - last(): T; - } - - //_.lastIndexOf - interface LoDashStatic { - /** - * This method is like _.indexOf except that it iterates over elements of array from right to left. - * - * @param array The array to search. - * @param value The value to search for. - * @param fromIndex The index to search from or true to perform a binary search on a sorted array. - * @return Returns the index of the matched value, else -1. - */ - lastIndexOf( - array: List, - value: T, - fromIndex?: boolean|number - ): number; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.lastIndexOf - */ - lastIndexOf( - value: T, - fromIndex?: boolean|number - ): number; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.lastIndexOf - */ - lastIndexOf( - value: TResult, - fromIndex?: boolean|number - ): number; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.lastIndexOf - */ - lastIndexOf( - value: T, - fromIndex?: boolean|number - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.lastIndexOf - */ - lastIndexOf( - value: TResult, - fromIndex?: boolean|number - ): LoDashExplicitWrapper; - } - - //_.pull - interface LoDashStatic { - /** - * Removes all provided values from array using SameValueZero for equality comparisons. - * - * Note: Unlike _.without, this method mutates array. - * - * @param array The array to modify. - * @param values The values to remove. - * @return Returns array. - */ - pull( - array: T[], - ...values: T[] - ): T[]; - - /** - * @see _.pull - */ - pull( - array: List, - ...values: T[] - ): List; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.pull - */ - pull(...values: T[]): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.pull - */ - pull(...values: TValue[]): LoDashImplicitObjectWrapper>; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.pull - */ - pull(...values: T[]): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.pull - */ - pull(...values: TValue[]): LoDashExplicitObjectWrapper>; - } - - //_.pullAt - interface LoDashStatic { - /** - * Removes elements from array corresponding to the given indexes and returns an array of the removed elements. - * Indexes may be specified as an array of indexes or as individual arguments. - * - * Note: Unlike _.at, this method mutates array. - * - * @param array The array to modify. - * @param indexes The indexes of elements to remove, specified as individual indexes or arrays of indexes. - * @return Returns the new array of removed elements. - */ - pullAt( - array: List, - ...indexes: (number|number[])[] - ): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.pullAt - */ - pullAt(...indexes: (number|number[])[]): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.pullAt - */ - pullAt(...indexes: (number|number[])[]): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.pullAt - */ - pullAt(...indexes: (number|number[])[]): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.pullAt - */ - pullAt(...indexes: (number|number[])[]): LoDashExplicitArrayWrapper; - } - - //_.remove - interface LoDashStatic { - /** - * Removes all elements from array that predicate returns truthy for and returns an array of the removed - * elements. The predicate is bound to thisArg and invoked with three arguments: (value, index, array). - * - * If a property name is provided for predicate the created _.property style callback returns the property - * value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for predicate the created _.matches style callback returns true for elements that - * have the properties of the given object, else false. - * - * Note: Unlike _.filter, this method mutates array. - * - * @param array The array to modify. - * @param predicate The function invoked per iteration. - * @param thisArg The this binding of predicate. - * @return Returns the new array of removed elements. - */ - remove( - array: List, - predicate?: ListIterator - ): T[]; - - /** - * @see _.remove - */ - remove( - array: List, - predicate?: string - ): T[]; - - /** - * @see _.remove - */ - remove( - array: List, - predicate?: W - ): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.remove - */ - remove( - predicate?: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.remove - */ - remove( - predicate?: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.remove - */ - remove( - predicate?: W - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.remove - */ - remove( - predicate?: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.remove - */ - remove( - predicate?: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.remove - */ - remove( - predicate?: W - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.remove - */ - remove( - predicate?: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.remove - */ - remove( - predicate?: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.remove - */ - remove( - predicate?: W - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.remove - */ - remove( - predicate?: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.remove - */ - remove( - predicate?: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.remove - */ - remove( - predicate?: W - ): LoDashExplicitArrayWrapper; - } - - //_.tail - interface LoDashStatic { - /** - * Gets all but the first element of array. - * - * @alias _.tail - * - * @param array The array to query. - * @return Returns the slice of array. - */ - tail(array: List): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.tail - */ - tail(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.tail - */ - tail(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.tail - */ - tail(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.tail - */ - tail(): LoDashExplicitArrayWrapper; - } - - //_.slice - interface LoDashStatic { - /** - * Creates a slice of array from start up to, but not including, end. - * - * @param array The array to slice. - * @param start The start position. - * @param end The end position. - * @return Returns the slice of array. - */ - slice( - array: T[], - start?: number, - end?: number - ): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.slice - */ - slice( - start?: number, - end?: number - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.slice - */ - slice( - start?: number, - end?: number - ): LoDashExplicitArrayWrapper; - } - - //_.sortedIndex - interface LoDashStatic { - /** - * Uses a binary search to determine the lowest index at which `value` should - * be inserted into `array` in order to maintain its sort order. - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The sorted array to inspect. - * @param {*} value The value to evaluate. - * @returns {number} Returns the index at which `value` should be inserted into `array`. - * @example - * - * _.sortedIndex([30, 50], 40); - * // => 1 - * - * _.sortedIndex([4, 5], 4); - * // => 0 - */ - sortedIndex( - array: List, - value: T - ): number; - - /** - * @see _.sortedIndex - */ - sortedIndex( - array: List, - value: T - ): number; - - /** - * @see _.sortedIndex - */ - sortedIndex( - array: List, - value: T - ): number; - - /** - * @see _.sortedIndex - */ - sortedIndex( - array: List, - value: T - ): number; - - /** - * @see _.sortedIndex - */ - sortedIndex( - array: List, - value: T - ): number; - } - - interface LoDashImplicitWrapper { - /** - * @see _.sortedIndex - */ - sortedIndex( - value: string - ): number; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.sortedIndex - */ - sortedIndex( - value: T - ): number; - - /** - * @see _.sortedIndex - */ - sortedIndex( - value: T - ): number; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.sortedIndex - */ - sortedIndex( - value: T - ): number; - - /** - * @see _.sortedIndex - */ - sortedIndex( - value: T - ): number; - - /** - * @see _.sortedIndex - */ - sortedIndex( - value: T - ): number; - } - - interface LoDashExplicitWrapper { - /** - * @see _.sortedIndex - */ - sortedIndex( - value: string - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.sortedIndex - */ - sortedIndex( - value: T - ): LoDashExplicitWrapper; - - /** - * @see _.sortedIndex - */ - sortedIndex( - value: T - ): LoDashExplicitWrapper; - - /** - * @see _.sortedIndex - */ - sortedIndex( - value: T - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.sortedIndex - */ - sortedIndex( - value: T - ): LoDashExplicitWrapper; - - /** - * @see _.sortedIndex - */ - sortedIndex( - value: T - ): LoDashExplicitWrapper; - - /** - * @see _.sortedIndex - */ - sortedIndex( - value: T - ): LoDashExplicitWrapper; - - - } - - //_.sortedIndexBy - interface LoDashStatic { - /** - * This method is like `_.sortedIndex` except that it accepts `iteratee` - * which is invoked for `value` and each element of `array` to compute their - * sort ranking. The iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The sorted array to inspect. - * @param {*} value The value to evaluate. - * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. - * @returns {number} Returns the index at which `value` should be inserted into `array`. - * @example - * - * var dict = { 'thirty': 30, 'forty': 40, 'fifty': 50 }; - * - * _.sortedIndexBy(['thirty', 'fifty'], 'forty', _.propertyOf(dict)); - * // => 1 - * - * // using the `_.property` iteratee shorthand - * _.sortedIndexBy([{ 'x': 4 }, { 'x': 5 }], { 'x': 4 }, 'x'); - * // => 0 - */ - sortedIndexBy( - array: List, - value: T, - iteratee: (x: T) => TSort - ): number; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - array: List, - value: T, - iteratee: (x: T) => any - ): number; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - array: List, - value: T, - iteratee: string - ): number; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - array: List, - value: T, - iteratee: W - ): number; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - array: List, - value: T, - iteratee: Object - ): number; - } - - interface LoDashImplicitWrapper { - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: string, - iteratee: (x: string) => TSort - ): number; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: (x: T) => TSort - ): number; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: string - ): number; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: W - ): number; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: (x: T) => TSort - ): number; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: (x: T) => any - ): number; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: string - ): number; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: W - ): number; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: Object - ): number; - } - - interface LoDashExplicitWrapper { - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: string, - iteratee: (x: string) => TSort - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: (x: T) => TSort - ): LoDashExplicitWrapper; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: string - ): LoDashExplicitWrapper; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: W - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: (x: T) => TSort - ): LoDashExplicitWrapper; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: (x: T) => any - ): LoDashExplicitWrapper; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: string - ): LoDashExplicitWrapper; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: W - ): LoDashExplicitWrapper; - - /** - * @see _.sortedIndexBy - */ - sortedIndexBy( - value: T, - iteratee: Object - ): LoDashExplicitWrapper; - } - - //_.sortedLastIndex - interface LoDashStatic { - /** - * This method is like `_.sortedIndex` except that it returns the highest - * index at which `value` should be inserted into `array` in order to - * maintain its sort order. - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The sorted array to inspect. - * @param {*} value The value to evaluate. - * @returns {number} Returns the index at which `value` should be inserted into `array`. - * @example - * - * _.sortedLastIndex([4, 5], 4); - * // => 1 - */ - sortedLastIndex( - array: List, - value: T - ): number; - - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - array: List, - value: T - ): number; - - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - array: List, - value: T - ): number; - - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - array: List, - value: T - ): number; - - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - array: List, - value: T - ): number; - } - - interface LoDashImplicitWrapper { - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - value: string - ): number; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - value: T - ): number; - - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - value: T - ): number; - - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - value: T - ): number; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - value: T - ): number; - - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - value: T - ): number; - - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - value: T - ): number; - } - - interface LoDashExplicitWrapper { - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - value: string - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - value: T - ): LoDashExplicitWrapper; - - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - value: T - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - value: T - ): LoDashExplicitWrapper; - - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - value: T - ): LoDashExplicitWrapper; - - /** - * @see _.sortedLastIndex - */ - sortedLastIndex( - value: T - ): LoDashExplicitWrapper; - } - - //_.sortedLastIndexBy - interface LoDashStatic { - /** - * This method is like `_.sortedLastIndex` except that it accepts `iteratee` - * which is invoked for `value` and each element of `array` to compute their - * sort ranking. The iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The sorted array to inspect. - * @param {*} value The value to evaluate. - * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. - * @returns {number} Returns the index at which `value` should be inserted into `array`. - * @example - * - * // using the `_.property` iteratee shorthand - * _.sortedLastIndexBy([{ 'x': 4 }, { 'x': 5 }], { 'x': 4 }, 'x'); - * // => 1 - */ - sortedLastIndexBy( - array: List, - value: T, - iteratee: (x: T) => TSort - ): number; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - array: List, - value: T, - iteratee: (x: T) => any - ): number; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - array: List, - value: T, - iteratee: string - ): number; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - array: List, - value: T, - iteratee: W - ): number; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - array: List, - value: T, - iteratee: Object - ): number; - } - - interface LoDashImplicitWrapper { - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: string, - iteratee: (x: string) => TSort - ): number; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: (x: T) => TSort - ): number; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: string - ): number; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: W - ): number; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: (x: T) => TSort - ): number; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: (x: T) => any - ): number; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: string - ): number; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: W - ): number; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: Object - ): number; - } - - interface LoDashExplicitWrapper { - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: string, - iteratee: (x: string) => TSort - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: (x: T) => TSort - ): LoDashExplicitWrapper; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: string - ): LoDashExplicitWrapper; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: W - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: (x: T) => TSort - ): LoDashExplicitWrapper; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: (x: T) => any - ): LoDashExplicitWrapper; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: string - ): LoDashExplicitWrapper; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: W - ): LoDashExplicitWrapper; - - /** - * @see _.sortedLastIndexBy - */ - sortedLastIndexBy( - value: T, - iteratee: Object - ): LoDashExplicitWrapper; - } - - //_.sortedLastIndexOf DUMMY - interface LoDashStatic { - /** - * This method is like `_.lastIndexOf` except that it performs a binary - * search on a sorted `array`. - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The array to search. - * @param {*} value The value to search for. - * @returns {number} Returns the index of the matched value, else `-1`. - * @example - * - * _.sortedLastIndexOf([1, 1, 2, 2], 2); - * // => 3 - */ - sortedLastIndexOf( - array: any[]|List, - ...values: any[] - ): any[]; - } - - //_.tail - interface LoDashStatic { - /** - * @see _.rest - */ - tail(array: List): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.rest - */ - tail(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.rest - */ - tail(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.rest - */ - tail(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.rest - */ - tail(): LoDashExplicitArrayWrapper; - } - - //_.take - interface LoDashStatic { - /** - * Creates a slice of array with n elements taken from the beginning. - * - * @param array The array to query. - * @param n The number of elements to take. - * @return Returns the slice of array. - */ - take( - array: List, - n?: number - ): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.take - */ - take(n?: number): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.take - */ - take(n?: number): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.take - */ - take(n?: number): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.take - */ - take(n?: number): LoDashExplicitArrayWrapper; - } - - //_.takeRight - interface LoDashStatic { - /** - * Creates a slice of array with n elements taken from the end. - * - * @param array The array to query. - * @param n The number of elements to take. - * @return Returns the slice of array. - */ - takeRight( - array: List, - n?: number - ): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.takeRight - */ - takeRight(n?: number): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.takeRight - */ - takeRight(n?: number): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.takeRight - */ - takeRight(n?: number): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.takeRight - */ - takeRight(n?: number): LoDashExplicitArrayWrapper; - } - - //_.takeRightWhile - interface LoDashStatic { - /** - * Creates a slice of array with elements taken from the end. Elements are taken until predicate returns - * falsey. The predicate is bound to thisArg and invoked with three arguments: (value, index, array). - * - * If a property name is provided for predicate the created _.property style callback returns the property - * value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for predicate the created _.matches style callback returns true for elements that - * have the properties of the given object, else false. - * - * @param array The array to query. - * @param predicate The function invoked per iteration. - * @param thisArg The this binding of predicate. - * @return Returns the slice of array. - */ - takeRightWhile( - array: List, - predicate?: ListIterator - ): TValue[]; - - /** - * @see _.takeRightWhile - */ - takeRightWhile( - array: List, - predicate?: string - ): TValue[]; - - /** - * @see _.takeRightWhile - */ - takeRightWhile( - array: List, - predicate?: TWhere - ): TValue[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.takeRightWhile - */ - takeRightWhile( - predicate?: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.takeRightWhile - */ - takeRightWhile( - predicate?: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.takeRightWhile - */ - takeRightWhile( - predicate?: TWhere - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.takeRightWhile - */ - takeRightWhile( - predicate?: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.takeRightWhile - */ - takeRightWhile( - predicate?: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.takeRightWhile - */ - takeRightWhile( - predicate?: TWhere - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.takeRightWhile - */ - takeRightWhile( - predicate?: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.takeRightWhile - */ - takeRightWhile( - predicate?: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.takeRightWhile - */ - takeRightWhile( - predicate?: TWhere - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.takeRightWhile - */ - takeRightWhile( - predicate?: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.takeRightWhile - */ - takeRightWhile( - predicate?: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.takeRightWhile - */ - takeRightWhile( - predicate?: TWhere - ): LoDashExplicitArrayWrapper; - } - - //_.takeWhile - interface LoDashStatic { - /** - * Creates a slice of array with elements taken from the beginning. Elements are taken until predicate returns - * falsey. The predicate is bound to thisArg and invoked with three arguments: (value, index, array). - * - * If a property name is provided for predicate the created _.property style callback returns the property - * value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for predicate the created _.matches style callback returns true for elements that - * have the properties of the given object, else false. - * - * @param array The array to query. - * @param predicate The function invoked per iteration. - * @param thisArg The this binding of predicate. - * @return Returns the slice of array. - */ - takeWhile( - array: List, - predicate?: ListIterator - ): TValue[]; - - /** - * @see _.takeWhile - */ - takeWhile( - array: List, - predicate?: string - ): TValue[]; - - /** - * @see _.takeWhile - */ - takeWhile( - array: List, - predicate?: TWhere - ): TValue[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.takeWhile - */ - takeWhile( - predicate?: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.takeWhile - */ - takeWhile( - predicate?: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.takeWhile - */ - takeWhile( - predicate?: TWhere - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.takeWhile - */ - takeWhile( - predicate?: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.takeWhile - */ - takeWhile( - predicate?: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.takeWhile - */ - takeWhile( - predicate?: TWhere - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.takeWhile - */ - takeWhile( - predicate?: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.takeWhile - */ - takeWhile( - predicate?: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.takeWhile - */ - takeWhile( - predicate?: TWhere - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.takeWhile - */ - takeWhile( - predicate?: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.takeWhile - */ - takeWhile( - predicate?: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.takeWhile - */ - takeWhile( - predicate?: TWhere - ): LoDashExplicitArrayWrapper; - } - - //_.union - interface LoDashStatic { - /** - * Creates an array of unique values, in order, from all of the provided arrays using SameValueZero for - * equality comparisons. - * - * @param arrays The arrays to inspect. - * @return Returns the new array of combined values. - */ - union(...arrays: List[]): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.union - */ - union(...arrays: List[]): LoDashImplicitArrayWrapper; - - /** - * @see _.union - */ - union(...arrays: List[]): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.union - */ - union(...arrays: List[]): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.union - */ - union(...arrays: List[]): LoDashExplicitArrayWrapper; - - /** - * @see _.union - */ - union(...arrays: List[]): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.union - */ - union(...arrays: List[]): LoDashExplicitArrayWrapper; - } - - //_.unionBy - interface LoDashStatic { - /** - * This method is like `_.union` except that it accepts `iteratee` which is - * invoked for each element of each `arrays` to generate the criterion by which - * uniqueness is computed. The iteratee is invoked with one argument: (value). - * - * @param arrays The arrays to inspect. - * @param iteratee The iteratee invoked per element. - * @return Returns the new array of combined values. - */ - unionBy( - arrays: T[]|List, - iteratee?: (value: T) => any - ): T[]; - - /** - * @see _.unionBy - */ - unionBy( - arrays: T[]|List, - iteratee?: W - ): T[]; - - /** - * @see _.unionBy - */ - unionBy( - arrays1: T[]|List, - arrays2: T[]|List, - iteratee?: (value: T) => any - ): T[]; - - /** - * @see _.unionBy - */ - unionBy( - arrays1: T[]|List, - arrays2: T[]|List, - iteratee?: W - ): T[]; - - /** - * @see _.unionBy - */ - unionBy( - arrays1: T[]|List, - arrays2: T[]|List, - arrays3: T[]|List, - iteratee?: (value: T) => any - ): T[]; - - /** - * @see _.unionBy - */ - unionBy( - arrays1: T[]|List, - arrays2: T[]|List, - arrays3: T[]|List, - iteratee?: W - ): T[]; - - /** - * @see _.unionBy - */ - unionBy( - arrays1: T[]|List, - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - iteratee?: (value: T) => any - ): T[]; - - /** - * @see _.unionBy - */ - unionBy( - arrays1: T[]|List, - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - iteratee?: W - ): T[]; - - /** - * @see _.unionBy - */ - unionBy( - arrays1: T[]|List, - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - arrays5: T[]|List, - iteratee?: (value: T) => any - ): T[]; - - /** - * @see _.unionBy - */ - unionBy( - arrays1: T[]|List, - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - arrays5: T[]|List, - iteratee?: W - ): T[]; - - /** - * @see _.unionBy - */ - unionBy( - arrays: T[]|List, - ...iteratee: any[] - ): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.unionBy - */ - unionBy( - iteratee?: (value: T) => any - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - iteratee?: (value: T) => any - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - iteratee?: (value: T) => any - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - iteratee?: (value: T) => any - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - arrays5: T[]|List, - iteratee?: (value: T) => any - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - arrays5: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - ...iteratee: any[] - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.unionBy - */ - unionBy( - iteratee?: (value: T) => any - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - iteratee?: (value: T) => any - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - iteratee?: (value: T) => any - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - iteratee?: (value: T) => any - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - arrays5: T[]|List, - iteratee?: (value: T) => any - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - arrays5: T[]|List, - iteratee?: W - ): LoDashImplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - ...iteratee: any[] - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.unionBy - */ - unionBy( - iteratee?: (value: T) => any - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - iteratee?: (value: T) => any - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - iteratee?: (value: T) => any - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - iteratee?: (value: T) => any - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - arrays5: T[]|List, - iteratee?: (value: T) => any - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - arrays5: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - ...iteratee: any[] - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.unionBy - */ - unionBy( - iteratee?: (value: T) => any - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - iteratee?: (value: T) => any - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - iteratee?: (value: T) => any - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - iteratee?: (value: T) => any - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - arrays5: T[]|List, - iteratee?: (value: T) => any - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - arrays2: T[]|List, - arrays3: T[]|List, - arrays4: T[]|List, - arrays5: T[]|List, - iteratee?: W - ): LoDashExplicitArrayWrapper; - - /** - * @see _.unionBy - */ - unionBy( - ...iteratee: any[] - ): LoDashExplicitArrayWrapper; - } - - //_.uniq - interface LoDashStatic { - /** - * Creates a duplicate-free version of an array, using - * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) - * for equality comparisons, in which only the first occurrence of each element - * is kept. - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The array to inspect. - * @returns {Array} Returns the new duplicate free array. - * @example - * - * _.uniq([2, 1, 2]); - * // => [2, 1] - */ - uniq( - array: List - ): T[]; - - /** - * @see _.uniq - */ - uniq( - array: List - ): T[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.uniq - */ - uniq(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.uniq - */ - uniq(): LoDashImplicitArrayWrapper; - - /** - * @see _.uniq - */ - uniq(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - uniq(): LoDashImplicitArrayWrapper; - - /** - * @see _.uniq - */ - uniq(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.uniq - */ - uniq(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.uniq - */ - uniq(): LoDashExplicitArrayWrapper; - - /** - * @see _.uniq - */ - uniq(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.uniq - */ - uniq(): LoDashExplicitArrayWrapper; - - /** - * @see _.uniq - */ - uniq(): LoDashExplicitArrayWrapper; - } - - //_.uniqBy - interface LoDashStatic { - /** - * This method is like `_.uniq` except that it accepts `iteratee` which is - * invoked for each element in `array` to generate the criterion by which - * uniqueness is computed. The iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The array to inspect. - * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. - * @returns {Array} Returns the new duplicate free array. - * @example - * - * _.uniqBy([2.1, 1.2, 2.3], Math.floor); - * // => [2.1, 1.2] - * - * // using the `_.property` iteratee shorthand - * _.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x'); - * // => [{ 'x': 1 }, { 'x': 2 }] - */ - uniqBy( - array: List, - iteratee: ListIterator - ): T[]; - - /** - * @see _.uniqBy - */ - uniqBy( - array: List, - iteratee: ListIterator - ): T[]; - - /** - * @see _.uniqBy - */ - uniqBy( - array: List, - iteratee: string - ): T[]; - - /** - * @see _.uniqBy - */ - uniqBy( - array: List, - iteratee: Object - ): T[]; - - /** - * @see _.uniqBy - */ - uniqBy( - array: List, - iteratee: TWhere - ): T[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: ListIterator - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: TWhere - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: Object - ): LoDashImplicitArrayWrapper; - - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: TWhere - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: ListIterator - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: TWhere - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: Object - ): LoDashExplicitArrayWrapper; - - /** - * @see _.uniqBy - */ - uniqBy( - iteratee: TWhere - ): LoDashExplicitArrayWrapper; - } - - //_.sortedUniq - interface LoDashStatic { - /** - * This method is like `_.uniq` except that it's designed and optimized - * for sorted arrays. - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The array to inspect. - * @returns {Array} Returns the new duplicate free array. - * @example - * - * _.sortedUniq([1, 1, 2]); - * // => [1, 2] - */ - sortedUniq( - array: List - ): T[]; - - /** - * @see _.sortedUniq - */ - sortedUniq( - array: List - ): T[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.sortedUniq - */ - sortedUniq(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.sortedUniq - */ - sortedUniq(): LoDashImplicitArrayWrapper; - - /** - * @see _.sortedUniq - */ - sortedUniq(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - sortedUniq(): LoDashImplicitArrayWrapper; - - /** - * @see _.sortedUniq - */ - sortedUniq(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.sortedUniq - */ - sortedUniq(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.sortedUniq - */ - sortedUniq(): LoDashExplicitArrayWrapper; - - /** - * @see _.sortedUniq - */ - sortedUniq(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.sortedUniq - */ - sortedUniq(): LoDashExplicitArrayWrapper; - - /** - * @see _.sortedUniq - */ - sortedUniq(): LoDashExplicitArrayWrapper; - } - - //_.sortedUniqBy - interface LoDashStatic { - /** - * This method is like `_.uniqBy` except that it's designed and optimized - * for sorted arrays. - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The array to inspect. - * @param {Function} [iteratee] The iteratee invoked per element. - * @returns {Array} Returns the new duplicate free array. - * @example - * - * _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor); - * // => [1.1, 2.2] - */ - sortedUniqBy( - array: List, - iteratee: ListIterator - ): T[]; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - array: List, - iteratee: ListIterator - ): T[]; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - array: List, - iteratee: string - ): T[]; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - array: List, - iteratee: Object - ): T[]; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - array: List, - iteratee: TWhere - ): T[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: ListIterator - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: TWhere - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: Object - ): LoDashImplicitArrayWrapper; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: TWhere - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: ListIterator - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: TWhere - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: Object - ): LoDashExplicitArrayWrapper; - - /** - * @see _.sortedUniqBy - */ - sortedUniqBy( - iteratee: TWhere - ): LoDashExplicitArrayWrapper; - } - - //_.unionWith DUMMY - interface LoDashStatic { - /** - * This method is like `_.union` except that it accepts `comparator` which - * is invoked to compare elements of `arrays`. The comparator is invoked - * with two arguments: (arrVal, othVal). - * - * @static - * @memberOf _ - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new array of combined values. - * @example - * - * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; - * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; - * - * _.unionWith(objects, others, _.isEqual); - * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] - */ - unionWith( - array: any[]|List, - ...values: any[] - ): any[]; - } - - //_.uniqWith DUMMY - interface LoDashStatic { - /** - * This method is like `_.uniq` except that it accepts `comparator` which - * is invoked to compare elements of `array`. The comparator is invoked with - * two arguments: (arrVal, othVal). - * - * @static - * @memberOf _ - * @category Array - * @param {Array} array The array to inspect. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new duplicate free array. - * @example - * - * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }]; - * - * _.uniqWith(objects, _.isEqual); - * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }] - */ - uniqWith( - array: any[]|List, - ...values: any[] - ): any[]; - } - - //_.unzip - interface LoDashStatic { - /** - * This method is like _.zip except that it accepts an array of grouped elements and creates an array - * regrouping the elements to their pre-zip configuration. - * - * @param array The array of grouped elements to process. - * @return Returns the new array of regrouped elements. - */ - unzip(array: List>): T[][]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.unzip - */ - unzip(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.unzip - */ - unzip(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.unzip - */ - unzip(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.unzip - */ - unzip(): LoDashExplicitArrayWrapper; - } - - //_.unzipWith - interface LoDashStatic { - /** - * This method is like _.unzip except that it accepts an iteratee to specify how regrouped values should be - * combined. The iteratee is bound to thisArg and invoked with four arguments: (accumulator, value, index, - * group). - * - * @param array The array of grouped elements to process. - * @param iteratee The function to combine regrouped values. - * @param thisArg The this binding of iteratee. - * @return Returns the new array of regrouped elements. - */ - unzipWith( - array: List>, - iteratee?: MemoIterator - ): TResult[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.unzipWith - */ - unzipWith( - iteratee?: MemoIterator - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.unzipWith - */ - unzipWith( - iteratee?: MemoIterator - ): LoDashImplicitArrayWrapper; - } - - //_.without - interface LoDashStatic { - /** - * Creates an array excluding all provided values using SameValueZero for equality comparisons. - * - * @param array The array to filter. - * @param values The values to exclude. - * @return Returns the new array of filtered values. - */ - without( - array: List, - ...values: T[] - ): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.without - */ - without(...values: T[]): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.without - */ - without(...values: T[]): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.without - */ - without(...values: T[]): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.without - */ - without(...values: T[]): LoDashExplicitArrayWrapper; - } - - //_.xor - interface LoDashStatic { - /** - * Creates an array of unique values that is the symmetric difference of the provided arrays. - * - * @param arrays The arrays to inspect. - * @return Returns the new array of values. - */ - xor(...arrays: List[]): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.xor - */ - xor(...arrays: List[]): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.xor - */ - xor(...arrays: List[]): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.xor - */ - xor(...arrays: List[]): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.xor - */ - xor(...arrays: List[]): LoDashExplicitArrayWrapper; - } - - //_.xorBy DUMMY - interface LoDashStatic { - /** - * This method is like `_.xor` except that it accepts `iteratee` which is - * invoked for each element of each `arrays` to generate the criterion by which - * uniqueness is computed. The iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. - * @returns {Array} Returns the new array of values. - * @example - * - * _.xorBy([2.1, 1.2], [4.3, 2.4], Math.floor); - * // => [1.2, 4.3] - * - * // using the `_.property` iteratee shorthand - * _.xorBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); - * // => [{ 'x': 2 }] - */ - xorBy( - array: any[]|List, - ...values: any[] - ): any[]; - } - - //_.xorWith DUMMY - interface LoDashStatic { - /** - * This method is like `_.xor` except that it accepts `comparator` which is - * invoked to compare elements of `arrays`. The comparator is invoked with - * two arguments: (arrVal, othVal). - * - * @static - * @memberOf _ - * @category Array - * @param {...Array} [arrays] The arrays to inspect. - * @param {Function} [comparator] The comparator invoked per element. - * @returns {Array} Returns the new array of values. - * @example - * - * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; - * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; - * - * _.xorWith(objects, others, _.isEqual); - * // => [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] - */ - xorWith( - array: any[]|List, - ...values: any[] - ): any[]; - } - - //_.zip - interface LoDashStatic { - /** - * Creates an array of grouped elements, the first of which contains the first elements of the given arrays, - * the second of which contains the second elements of the given arrays, and so on. - * - * @param arrays The arrays to process. - * @return Returns the new array of grouped elements. - */ - zip(...arrays: List[]): T[][]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.zip - */ - zip(...arrays: List[]): _.LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.zip - */ - zip(...arrays: List[]): _.LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.zip - */ - zip(...arrays: List[]): _.LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.zip - */ - zip(...arrays: List[]): _.LoDashExplicitArrayWrapper; - } - - //_.zipObject - interface LoDashStatic { - /** - * The inverse of _.pairs; this method returns an object composed from arrays of property names and values. - * Provide either a single two dimensional array, e.g. [[key1, value1], [key2, value2]] or two arrays, one of - * property names and one of corresponding values. - * - * @param props The property names. - * @param values The property values. - * @return Returns the new object. - */ - zipObject( - props: List|List>, - values?: List - ): TResult; - - /** - * @see _.zipObject - */ - zipObject( - props: List|List>, - values?: List - ): TResult; - - /** - * @see _.zipObject - */ - zipObject( - props: List|List>, - values?: List - ): _.Dictionary; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.zipObject - */ - zipObject( - values?: List - ): _.LoDashImplicitObjectWrapper; - - /** - * @see _.zipObject - */ - zipObject( - values?: List - ): _.LoDashImplicitObjectWrapper; - - /** - * @see _.zipObject - */ - zipObject( - values?: List - ): _.LoDashImplicitObjectWrapper<_.Dictionary>; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.zipObject - */ - zipObject( - values?: List - ): _.LoDashImplicitObjectWrapper; - - /** - * @see _.zipObject - */ - zipObject( - values?: List - ): _.LoDashImplicitObjectWrapper; - - /** - * @see _.zipObject - */ - zipObject( - values?: List - ): _.LoDashImplicitObjectWrapper<_.Dictionary>; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.zipObject - */ - zipObject( - values?: List - ): _.LoDashExplicitObjectWrapper; - - /** - * @see _.zipObject - */ - zipObject( - values?: List - ): _.LoDashExplicitObjectWrapper; - - /** - * @see _.zipObject - */ - zipObject( - values?: List - ): _.LoDashExplicitObjectWrapper<_.Dictionary>; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.zipObject - */ - zipObject( - values?: List - ): _.LoDashExplicitObjectWrapper; - - /** - * @see _.zipObject - */ - zipObject( - values?: List - ): _.LoDashExplicitObjectWrapper; - - /** - * @see _.zipObject - */ - zipObject( - values?: List - ): _.LoDashExplicitObjectWrapper<_.Dictionary>; - } - - //_.zipWith - interface LoDashStatic { - /** - * This method is like _.zip except that it accepts an iteratee to specify how grouped values should be - * combined. The iteratee is bound to thisArg and invoked with four arguments: (accumulator, value, index, - * group). - * @param {...Array} [arrays] The arrays to process. - * @param {Function} [iteratee] The function to combine grouped values. - * @param {*} [thisArg] The `this` binding of `iteratee`. - * @return Returns the new array of grouped elements. - */ - zipWith(...args: any[]): TResult[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.zipWith - */ - zipWith(...args: any[]): LoDashImplicitArrayWrapper; - } - - /********* - * Chain * - *********/ - - //_.chain - interface LoDashStatic { - /** - * Creates a lodash object that wraps value with explicit method chaining enabled. - * - * @param value The value to wrap. - * @return Returns the new lodash wrapper instance. - */ - chain(value: number): LoDashExplicitWrapper; - chain(value: string): LoDashExplicitWrapper; - chain(value: boolean): LoDashExplicitWrapper; - chain(value: T[]): LoDashExplicitArrayWrapper; - chain(value: T): LoDashExplicitObjectWrapper; - chain(value: any): LoDashExplicitWrapper; - } - - interface LoDashImplicitWrapper { - /** - * @see _.chain - */ - chain(): LoDashExplicitWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.chain - */ - chain(): LoDashExplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.chain - */ - chain(): LoDashExplicitObjectWrapper; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.chain - */ - chain(): TWrapper; - } - - //_.tap - interface LoDashStatic { - /** - * This method invokes interceptor and returns value. The interceptor is bound to thisArg and invoked with one - * argument; (value). The purpose of this method is to "tap into" a method chain in order to perform operations - * on intermediate results within the chain. - * - * @param value The value to provide to interceptor. - * @param interceptor The function to invoke. - * @parem thisArg The this binding of interceptor. - * @return Returns value. - **/ - tap( - value: T, - interceptor: (value: T) => void - ): T; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.tap - */ - tap( - interceptor: (value: T) => void - ): TWrapper; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.tap - */ - tap( - interceptor: (value: T) => void - ): TWrapper; - } - - //_.thru - interface LoDashStatic { - /** - * This method is like _.tap except that it returns the result of interceptor. - * - * @param value The value to provide to interceptor. - * @param interceptor The function to invoke. - * @param thisArg The this binding of interceptor. - * @return Returns the result of interceptor. - */ - thru( - value: T, - interceptor: (value: T) => TResult - ): TResult; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.thru - */ - thru( - interceptor: (value: T) => TResult): LoDashImplicitWrapper; - - /** - * @see _.thru - */ - thru( - interceptor: (value: T) => TResult): LoDashImplicitWrapper; - - /** - * @see _.thru - */ - thru( - interceptor: (value: T) => TResult): LoDashImplicitWrapper; - - /** - * @see _.thru - */ - thru( - interceptor: (value: T) => TResult): LoDashImplicitObjectWrapper; - - /** - * @see _.thru - */ - thru( - interceptor: (value: T) => TResult[]): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.thru - */ - thru( - interceptor: (value: T) => TResult - ): LoDashExplicitWrapper; - - /** - * @see _.thru - */ - thru( - interceptor: (value: T) => TResult - ): LoDashExplicitWrapper; - - /** - * @see _.thru - */ - thru( - interceptor: (value: T) => TResult - ): LoDashExplicitWrapper; - - /** - * @see _.thru - */ - thru( - interceptor: (value: T) => TResult - ): LoDashExplicitObjectWrapper; - - /** - * @see _.thru - */ - thru( - interceptor: (value: T) => TResult[] - ): LoDashExplicitArrayWrapper; - } - - //_.prototype.commit - interface LoDashImplicitWrapperBase { - /** - * Executes the chained sequence and returns the wrapped result. - * - * @return Returns the new lodash wrapper instance. - */ - commit(): TWrapper; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.commit - */ - commit(): TWrapper; - } - - //_.prototype.concat - interface LoDashImplicitWrapperBase { - /** - * Creates a new array joining a wrapped array with any additional arrays and/or values. - * - * @param items - * @return Returns the new concatenated array. - */ - concat(...items: Array>): LoDashImplicitArrayWrapper; - - /** - * @see _.concat - */ - concat(...items: Array>): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.concat - */ - concat(...items: Array>): LoDashExplicitArrayWrapper; - - /** - * @see _.concat - */ - concat(...items: Array>): LoDashExplicitArrayWrapper; - } - - //_.prototype.plant - interface LoDashImplicitWrapperBase { - /** - * Creates a clone of the chained sequence planting value as the wrapped value. - * @param value The value to plant as the wrapped value. - * @return Returns the new lodash wrapper instance. - */ - plant(value: number): LoDashImplicitWrapper; - - /** - * @see _.plant - */ - plant(value: string): LoDashImplicitStringWrapper; - - /** - * @see _.plant - */ - plant(value: boolean): LoDashImplicitWrapper; - - /** - * @see _.plant - */ - plant(value: number[]): LoDashImplicitNumberArrayWrapper; - - /** - * @see _.plant - */ - plant(value: T[]): LoDashImplicitArrayWrapper; - - /** - * @see _.plant - */ - plant(value: T): LoDashImplicitObjectWrapper; - - /** - * @see _.plant - */ - plant(value: any): LoDashImplicitWrapper; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.plant - */ - plant(value: number): LoDashExplicitWrapper; - - /** - * @see _.plant - */ - plant(value: string): LoDashExplicitStringWrapper; - - /** - * @see _.plant - */ - plant(value: boolean): LoDashExplicitWrapper; - - /** - * @see _.plant - */ - plant(value: number[]): LoDashExplicitNumberArrayWrapper; - - /** - * @see _.plant - */ - plant(value: T[]): LoDashExplicitArrayWrapper; - - /** - * @see _.plant - */ - plant(value: T): LoDashExplicitObjectWrapper; - - /** - * @see _.plant - */ - plant(value: any): LoDashExplicitWrapper; - } - - //_.prototype.reverse - interface LoDashImplicitArrayWrapper { - /** - * Reverses the wrapped array so the first element becomes the last, the second element becomes the second to - * last, and so on. - * - * Note: This method mutates the wrapped array. - * - * @return Returns the new reversed lodash wrapper instance. - */ - reverse(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.reverse - */ - reverse(): LoDashExplicitArrayWrapper; - } - - //_.prototype.toJSON - interface LoDashWrapperBase { - /** - * @see _.value - */ - toJSON(): T; - } - - //_.prototype.toString - interface LoDashWrapperBase { - /** - * Produces the result of coercing the unwrapped value to a string. - * - * @return Returns the coerced string value. - */ - toString(): string; - } - - //_.prototype.value - interface LoDashWrapperBase { - /** - * Executes the chained sequence to extract the unwrapped value. - * - * @alias _.toJSON, _.valueOf - * - * @return Returns the resolved unwrapped value. - */ - value(): T; - } - - //_.valueOf - interface LoDashWrapperBase { - /** - * @see _.value - */ - valueOf(): T; - } - - /************** - * Collection * - **************/ - - //_.at - interface LoDashStatic { - /** - * Creates an array of elements corresponding to the given keys, or indexes, of collection. Keys may be - * specified as individual arguments or as arrays of keys. - * - * @param collection The collection to iterate over. - * @param props The property names or indexes of elements to pick, specified individually or in arrays. - * @return Returns the new array of picked elements. - */ - at( - collection: List|Dictionary, - ...props: (number|string|(number|string)[])[] - ): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.at - */ - at(...props: (number|string|(number|string)[])[]): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.at - */ - at(...props: (number|string|(number|string)[])[]): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.at - */ - at(...props: (number|string|(number|string)[])[]): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.at - */ - at(...props: (number|string|(number|string)[])[]): LoDashExplicitArrayWrapper; - } - - //_.countBy - interface LoDashStatic { - /** - * Creates an object composed of keys generated from the results of running each element of collection through - * iteratee. The corresponding value of each key is the number of times the key was returned by iteratee. The - * iteratee is bound to thisArg and invoked with three arguments: - * (value, index|key, collection). - * - * If a property name is provided for iteratee the created _.property style callback returns the property - * value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for iteratee the created _.matches style callback returns true for elements that - * have the properties of the given object, else false. - * - * @param collection The collection to iterate over. - * @param iteratee The function invoked per iteration. - * @param thisArg The this binding of iteratee. - * @return Returns the composed aggregate object. - */ - countBy( - collection: List, - iteratee?: ListIterator - ): Dictionary; - - /** - * @see _.countBy - */ - countBy( - collection: Dictionary, - iteratee?: DictionaryIterator - ): Dictionary; - - /** - * @see _.countBy - */ - countBy( - collection: NumericDictionary, - iteratee?: NumericDictionaryIterator - ): Dictionary; - - /** - * @see _.countBy - */ - countBy( - collection: List|Dictionary|NumericDictionary, - iteratee?: string - ): Dictionary; - - /** - * @see _.countBy - */ - countBy( - collection: List|Dictionary|NumericDictionary, - iteratee?: W - ): Dictionary; - - /** - * @see _.countBy - */ - countBy( - collection: List|Dictionary|NumericDictionary, - iteratee?: Object - ): Dictionary; - } - - interface LoDashImplicitWrapper { - /** - * @see _.countBy - */ - countBy( - iteratee?: ListIterator - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.countBy - */ - countBy( - iteratee?: ListIterator - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.countBy - */ - countBy( - iteratee?: string - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.countBy - */ - countBy( - iteratee?: W - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.countBy - */ - countBy( - iteratee?: ListIterator|DictionaryIterator|NumericDictionaryIterator - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.countBy - */ - countBy( - iteratee?: string - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.countBy - */ - countBy( - iteratee?: W - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashExplicitWrapper { - /** - * @see _.countBy - */ - countBy( - iteratee?: ListIterator - ): LoDashExplicitObjectWrapper>; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.countBy - */ - countBy( - iteratee?: ListIterator - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.countBy - */ - countBy( - iteratee?: string - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.countBy - */ - countBy( - iteratee?: W - ): LoDashExplicitObjectWrapper>; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.countBy - */ - countBy( - iteratee?: ListIterator|DictionaryIterator|NumericDictionaryIterator - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.countBy - */ - countBy( - iteratee?: string - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.countBy - */ - countBy( - iteratee?: W - ): LoDashExplicitObjectWrapper>; - } - - //_.each - interface LoDashStatic { - /** - * @see _.forEach - */ - each( - collection: T[], - iteratee?: ListIterator - ): T[]; - - /** - * @see _.forEach - */ - each( - collection: List, - iteratee?: ListIterator - ): List; - - /** - * @see _.forEach - */ - each( - collection: Dictionary, - iteratee?: DictionaryIterator - ): Dictionary; - - /** - * @see _.forEach - */ - each( - collection: T, - iteratee?: ObjectIterator - ): T; - - /** - * @see _.forEach - */ - each( - collection: T, - iteratee?: ObjectIterator - ): T; - } - - interface LoDashImplicitWrapper { - /** - * @see _.forEach - */ - each( - iteratee: ListIterator - ): LoDashImplicitWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.forEach - */ - each( - iteratee: ListIterator - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.forEach - */ - each( - iteratee?: ListIterator|DictionaryIterator - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.forEach - */ - each( - iteratee: ListIterator - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.forEach - */ - each( - iteratee: ListIterator - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.forEach - */ - each( - iteratee?: ListIterator|DictionaryIterator - ): LoDashExplicitObjectWrapper; - } - - //_.eachRight - interface LoDashStatic { - /** - * @see _.forEachRight - */ - eachRight( - collection: T[], - iteratee?: ListIterator - ): T[]; - - /** - * @see _.forEachRight - */ - eachRight( - collection: List, - iteratee?: ListIterator - ): List; - - /** - * @see _.forEachRight - */ - eachRight( - collection: Dictionary, - iteratee?: DictionaryIterator - ): Dictionary; - - /** - * @see _.forEachRight - */ - eachRight( - collection: T, - iteratee?: ObjectIterator - ): T; - - /** - * @see _.forEachRight - */ - eachRight( - collection: T, - iteratee?: ObjectIterator - ): T; - } - - interface LoDashImplicitWrapper { - /** - * @see _.forEachRight - */ - eachRight( - iteratee: ListIterator - ): LoDashImplicitWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.forEachRight - */ - eachRight( - iteratee: ListIterator - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.forEachRight - */ - eachRight( - iteratee?: ListIterator|DictionaryIterator - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.forEachRight - */ - eachRight( - iteratee: ListIterator - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.forEachRight - */ - eachRight( - iteratee: ListIterator - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.forEachRight - */ - eachRight( - iteratee?: ListIterator|DictionaryIterator - ): LoDashExplicitObjectWrapper; - } - - //_.every - interface LoDashStatic { - /** - * Checks if predicate returns truthy for all elements of collection. Iteration is stopped once predicate - * returns falsey. The predicate is invoked with three arguments: (value, index|key, collection). - * - * @param collection The collection to iterate over. - * @param predicate The function invoked per iteration. - * @return Returns true if all elements pass the predicate check, else false. - */ - every( - collection: List, - predicate?: ListIterator - ): boolean; - - /** - * @see _.every - */ - every( - collection: Dictionary, - predicate?: DictionaryIterator - ): boolean; - - /** - * @see _.every - */ - every( - collection: NumericDictionary, - predicate?: NumericDictionaryIterator - ): boolean; - - /** - * @see _.every - */ - every( - collection: List|Dictionary|NumericDictionary, - predicate?: string|any[] - ): boolean; - - /** - * @see _.every - */ - every( - collection: List|Dictionary|NumericDictionary, - predicate?: TObject - ): boolean; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.every - */ - every( - predicate?: ListIterator|NumericDictionaryIterator - ): boolean; - - /** - * @see _.every - */ - every( - predicate?: string|any[] - ): boolean; - - /** - * @see _.every - */ - every( - predicate?: TObject - ): boolean; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.every - */ - every( - predicate?: ListIterator|DictionaryIterator|NumericDictionaryIterator - ): boolean; - - /** - * @see _.every - */ - every( - predicate?: string|any[] - ): boolean; - - /** - * @see _.every - */ - every( - predicate?: TObject - ): boolean; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.every - */ - every( - predicate?: ListIterator|NumericDictionaryIterator - ): LoDashExplicitWrapper; - - /** - * @see _.every - */ - every( - predicate?: string|any[] - ): LoDashExplicitWrapper; - - /** - * @see _.every - */ - every( - predicate?: TObject - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.every - */ - every( - predicate?: ListIterator|DictionaryIterator|NumericDictionaryIterator - ): LoDashExplicitWrapper; - - /** - * @see _.every - */ - every( - predicate?: string|any[] - ): LoDashExplicitWrapper; - - /** - * @see _.every - */ - every( - predicate?: TObject - ): LoDashExplicitWrapper; - } - - //_.filter - interface LoDashStatic { - /** - * Iterates over elements of collection, returning an array of all elements predicate returns truthy for. The - * predicate is bound to thisArg and invoked with three arguments: (value, index|key, collection). - * - * If a property name is provided for predicate the created _.property style callback returns the property - * value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for predicate the created _.matches style callback returns true for elements that - * have the properties of the given object, else false. - * - * @param collection The collection to iterate over. - * @param predicate The function invoked per iteration. - * @param thisArg The this binding of predicate. - * @return Returns the new filtered array. - */ - filter( - collection: List, - predicate?: ListIterator - ): T[]; - - /** - * @see _.filter - */ - filter( - collection: Dictionary, - predicate?: DictionaryIterator - ): T[]; - - /** - * @see _.filter - */ - filter( - collection: string, - predicate?: StringIterator - ): string[]; - - /** - * @see _.filter - */ - filter( - collection: List|Dictionary, - predicate: string - ): T[]; - - /** - * @see _.filter - */ - filter( - collection: List|Dictionary, - predicate: W - ): T[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.filter - */ - filter( - predicate?: StringIterator - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.filter - */ - filter( - predicate: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.filter - */ - filter( - predicate: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.filter - */ - filter(predicate: W): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.filter - */ - filter( - predicate: ListIterator|DictionaryIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.filter - */ - filter( - predicate: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.filter - */ - filter(predicate: W): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.filter - */ - filter( - predicate?: StringIterator - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.filter - */ - filter( - predicate: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.filter - */ - filter( - predicate: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.filter - */ - filter(predicate: W): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.filter - */ - filter( - predicate: ListIterator|DictionaryIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.filter - */ - filter( - predicate: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.filter - */ - filter(predicate: W): LoDashExplicitArrayWrapper; - } - - //_.find - interface LoDashStatic { - /** - * Iterates over elements of collection, returning the first element predicate returns truthy for. - * The predicate is bound to thisArg and invoked with three arguments: (value, index|key, collection). - * - * If a property name is provided for predicate the created _.property style callback returns the property - * value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for predicate the created _.matches style callback returns true for elements that - * have the properties of the given object, else false. - * - * @param collection The collection to search. - * @param predicate The function invoked per iteration. - * @param thisArg The this binding of predicate. - * @return Returns the matched element, else undefined. - */ - find( - collection: List, - predicate?: ListIterator - ): T; - - /** - * @see _.find - */ - find( - collection: Dictionary, - predicate?: DictionaryIterator - ): T; - - /** - * @see _.find - */ - find( - collection: List|Dictionary, - predicate?: string - ): T; - - /** - * @see _.find - */ - find( - collection: List|Dictionary, - predicate?: TObject - ): T; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.find - */ - find( - predicate?: ListIterator - ): T; - - /** - * @see _.find - */ - find( - predicate?: string - ): T; - - /** - * @see _.find - */ - find( - predicate?: TObject - ): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.find - */ - find( - predicate?: ListIterator|DictionaryIterator - ): TResult; - - /** - * @see _.find - */ - find( - predicate?: string - ): TResult; - - /** - * @see _.find - */ - find( - predicate?: TObject - ): TResult; - } - - //_.findLast - interface LoDashStatic { - /** - * This method is like _.find except that it iterates over elements of a collection from - * right to left. - * @param collection Searches for a value in this list. - * @param callback The function called per iteration. - * @param thisArg The this binding of callback. - * @return The found element, else undefined. - **/ - findLast( - collection: Array, - callback: ListIterator): T; - - /** - * @see _.find - **/ - findLast( - collection: List, - callback: ListIterator): T; - - /** - * @see _.find - **/ - findLast( - collection: Dictionary, - callback: DictionaryIterator): T; - - /** - * @see _.find - * @param _.pluck style callback - **/ - findLast( - collection: Array, - whereValue: W): T; - - /** - * @see _.find - * @param _.pluck style callback - **/ - findLast( - collection: List, - whereValue: W): T; - - /** - * @see _.find - * @param _.pluck style callback - **/ - findLast( - collection: Dictionary, - whereValue: W): T; - - /** - * @see _.find - * @param _.where style callback - **/ - findLast( - collection: Array, - pluckValue: string): T; - - /** - * @see _.find - * @param _.where style callback - **/ - findLast( - collection: List, - pluckValue: string): T; - - /** - * @see _.find - * @param _.where style callback - **/ - findLast( - collection: Dictionary, - pluckValue: string): T; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.findLast - */ - findLast( - callback: ListIterator): T; - /** - * @see _.findLast - * @param _.where style callback - */ - findLast( - whereValue: W): T; - - /** - * @see _.findLast - * @param _.where style callback - */ - findLast( - pluckValue: string): T; - } - - //_.flatMap - interface LoDashStatic { - /** - * Creates an array of flattened values by running each element in collection through iteratee - * and concating its result to the other mapped values. The iteratee is invoked with three arguments: - * (value, index|key, collection). - * - * @param collection The collection to iterate over. - * @param iteratee The function invoked per iteration. - * @return Returns the new flattened array. - */ - flatMap( - collection: List, - iteratee?: ListIterator - ): TResult[]; - - /** - * @see _.flatMap - */ - flatMap( - collection: List, - iteratee?: ListIterator - ): TResult[]; - - /** - * @see _.flatMap - */ - flatMap( - collection: Dictionary, - iteratee?: DictionaryIterator - ): TResult[]; - - /** - * @see _.flatMap - */ - flatMap( - collection: Dictionary, - iteratee?: DictionaryIterator - ): TResult[]; - - /** - * @see _.flatMap - */ - flatMap( - collection: NumericDictionary, - iteratee?: NumericDictionaryIterator - ): TResult[]; - - /** - * @see _.flatMap - */ - flatMap( - collection: NumericDictionary, - iteratee?: NumericDictionaryIterator - ): TResult[]; - - /** - * @see _.flatMap - */ - flatMap( - collection: TObject, - iteratee?: ObjectIterator - ): TResult[]; - - /** - * @see _.flatMap - */ - flatMap( - collection: Object, - iteratee?: ObjectIterator - ): TResult[]; - - /** - * @see _.flatMap - */ - flatMap( - collection: TObject, - iteratee: TWhere - ): boolean[]; - - /** - * @see _.flatMap - */ - flatMap( - collection: TObject, - iteratee: Object|string - ): TResult[]; - - /** - * @see _.flatMap - */ - flatMap( - collection: TObject, - iteratee: [string, any] - ): boolean[]; - - /** - * @see _.flatMap - */ - flatMap( - collection: string - ): string[]; - - /** - * @see _.flatMap - */ - flatMap( - collection: Object, - iteratee?: Object|string - ): TResult[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.flatMap - */ - flatMap( - iteratee: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.flatMap - */ - flatMap( - iteratee: ListIterator|string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap( - iteratee: TWhere - ): LoDashImplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap( - iteratee: [string, any] - ): LoDashImplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.flatMap - */ - flatMap( - iteratee: ListIterator|DictionaryIterator|NumericDictionaryIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap( - iteratee: ObjectIterator|string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap( - iteratee: TWhere - ): LoDashImplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap( - iteratee: [string, any] - ): LoDashImplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.flatMap - */ - flatMap( - iteratee: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.flatMap - */ - flatMap( - iteratee: ListIterator|string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap( - iteratee: TWhere - ): LoDashExplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap( - iteratee: [string, any] - ): LoDashExplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.flatMap - */ - flatMap( - iteratee: ListIterator|DictionaryIterator|NumericDictionaryIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap( - iteratee: ObjectIterator|string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap( - iteratee: TWhere - ): LoDashExplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap( - iteratee: [string, any] - ): LoDashExplicitArrayWrapper; - - /** - * @see _.flatMap - */ - flatMap(): LoDashExplicitArrayWrapper; - } - - //_.forEach - interface LoDashStatic { - /** - * Iterates over elements of collection invoking iteratee for each element. The iteratee is bound to thisArg - * and invoked with three arguments: - * (value, index|key, collection). Iteratee functions may exit iteration early by explicitly returning false. - * - * Note: As with other "Collections" methods, objects with a "length" property are iterated like arrays. To - * avoid this behavior _.forIn or _.forOwn may be used for object iteration. - * - * @alias _.each - * - * @param collection The collection to iterate over. - * @param iteratee The function invoked per iteration. - * @param thisArg The this binding of iteratee. - */ - forEach( - collection: T[], - iteratee?: ListIterator - ): T[]; - - /** - * @see _.forEach - */ - forEach( - collection: List, - iteratee?: ListIterator - ): List; - - /** - * @see _.forEach - */ - forEach( - collection: Dictionary, - iteratee?: DictionaryIterator - ): Dictionary; - - /** - * @see _.forEach - */ - forEach( - collection: T, - iteratee?: ObjectIterator - ): T; - - /** - * @see _.forEach - */ - forEach( - collection: T, - iteratee?: ObjectIterator - ): T; - } - - interface LoDashImplicitWrapper { - /** - * @see _.forEach - */ - forEach( - iteratee: ListIterator - ): LoDashImplicitWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.forEach - */ - forEach( - iteratee: ListIterator - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.forEach - */ - forEach( - iteratee?: ListIterator|DictionaryIterator - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.forEach - */ - forEach( - iteratee: ListIterator - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.forEach - */ - forEach( - iteratee: ListIterator - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.forEach - */ - forEach( - iteratee?: ListIterator|DictionaryIterator - ): LoDashExplicitObjectWrapper; - } - - //_.forEachRight - interface LoDashStatic { - /** - * This method is like _.forEach except that it iterates over elements of collection from right to left. - * - * @alias _.eachRight - * - * @param collection The collection to iterate over. - * @param iteratee The function called per iteration. - * @param thisArg The this binding of callback. - */ - forEachRight( - collection: T[], - iteratee?: ListIterator - ): T[]; - - /** - * @see _.forEachRight - */ - forEachRight( - collection: List, - iteratee?: ListIterator - ): List; - - /** - * @see _.forEachRight - */ - forEachRight( - collection: Dictionary, - iteratee?: DictionaryIterator - ): Dictionary; - - /** - * @see _.forEachRight - */ - forEachRight( - collection: T, - iteratee?: ObjectIterator - ): T; - - /** - * @see _.forEachRight - */ - forEachRight( - collection: T, - iteratee?: ObjectIterator - ): T; - } - - interface LoDashImplicitWrapper { - /** - * @see _.forEachRight - */ - forEachRight( - iteratee: ListIterator - ): LoDashImplicitWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.forEachRight - */ - forEachRight( - iteratee: ListIterator - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.forEachRight - */ - forEachRight( - iteratee?: ListIterator|DictionaryIterator - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.forEachRight - */ - forEachRight( - iteratee: ListIterator - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.forEachRight - */ - forEachRight( - iteratee: ListIterator - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.forEachRight - */ - forEachRight( - iteratee?: ListIterator|DictionaryIterator - ): LoDashExplicitObjectWrapper; - } - - //_.groupBy - interface LoDashStatic { - /** - * Creates an object composed of keys generated from the results of running each element of collection through - * iteratee. The corresponding value of each key is an array of the elements responsible for generating the - * key. The iteratee is bound to thisArg and invoked with three arguments: - * (value, index|key, collection). - * - * If a property name is provided for iteratee the created _.property style callback returns the property - * value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for iteratee the created _.matches style callback returns true for elements that - * have the properties of the given object, else false. - * - * @param collection The collection to iterate over. - * @param iteratee The function invoked per iteration. - * @param thisArg The this binding of iteratee. - * @return Returns the composed aggregate object. - */ - groupBy( - collection: List, - iteratee?: ListIterator - ): Dictionary; - - /** - * @see _.groupBy - */ - groupBy( - collection: List, - iteratee?: ListIterator - ): Dictionary; - - /** - * @see _.groupBy - */ - groupBy( - collection: Dictionary, - iteratee?: DictionaryIterator - ): Dictionary; - - /** - * @see _.groupBy - */ - groupBy( - collection: Dictionary, - iteratee?: DictionaryIterator - ): Dictionary; - - /** - * @see _.groupBy - */ - groupBy( - collection: List|Dictionary, - iteratee?: string - ): Dictionary; - - /** - * @see _.groupBy - */ - groupBy( - collection: List|Dictionary, - iteratee?: string - ): Dictionary; - - /** - * @see _.groupBy - */ - groupBy( - collection: List|Dictionary, - iteratee?: TWhere - ): Dictionary; - - /** - * @see _.groupBy - */ - groupBy( - collection: List|Dictionary, - iteratee?: Object - ): Dictionary; - } - - interface LoDashImplicitWrapper { - /** - * @see _.groupBy - */ - groupBy( - iteratee?: ListIterator - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.groupBy - */ - groupBy( - iteratee?: ListIterator - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.groupBy - */ - groupBy( - iteratee?: string - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.groupBy - */ - groupBy( - iteratee?: TWhere - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.groupBy - */ - groupBy( - iteratee?: ListIterator|DictionaryIterator - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.groupBy - */ - groupBy( - iteratee?: ListIterator|DictionaryIterator - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.groupBy - */ - groupBy( - iteratee?: string - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.groupBy - */ - groupBy( - iteratee?: string - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.groupBy - */ - groupBy( - iteratee?: TWhere - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.groupBy - */ - groupBy( - iteratee?: Object - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashExplicitWrapper { - /** - * @see _.groupBy - */ - groupBy( - iteratee?: ListIterator - ): LoDashExplicitObjectWrapper>; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.groupBy - */ - groupBy( - iteratee?: ListIterator - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.groupBy - */ - groupBy( - iteratee?: string - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.groupBy - */ - groupBy( - iteratee?: TWhere - ): LoDashExplicitObjectWrapper>; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.groupBy - */ - groupBy( - iteratee?: ListIterator|DictionaryIterator - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.groupBy - */ - groupBy( - iteratee?: ListIterator|DictionaryIterator - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.groupBy - */ - groupBy( - iteratee?: string - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.groupBy - */ - groupBy( - iteratee?: string - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.groupBy - */ - groupBy( - iteratee?: TWhere - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.groupBy - */ - groupBy( - iteratee?: Object - ): LoDashExplicitObjectWrapper>; - } - - //_.includes - interface LoDashStatic { - /** - * Checks if target is in collection using SameValueZero for equality comparisons. If fromIndex is negative, - * it’s used as the offset from the end of collection. - * - * @param collection The collection to search. - * @param target The value to search for. - * @param fromIndex The index to search from. - * @return True if the target element is found, else false. - */ - includes( - collection: List|Dictionary, - target: T, - fromIndex?: number - ): boolean; - - /** - * @see _.includes - */ - includes( - collection: string, - target: string, - fromIndex?: number - ): boolean; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.includes - */ - includes( - target: T, - fromIndex?: number - ): boolean; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.includes - */ - includes( - target: TValue, - fromIndex?: number - ): boolean; - } - - interface LoDashImplicitWrapper { - /** - * @see _.includes - */ - includes( - target: string, - fromIndex?: number - ): boolean; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.includes - */ - includes( - target: T, - fromIndex?: number - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.includes - */ - includes( - target: TValue, - fromIndex?: number - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.includes - */ - includes( - target: string, - fromIndex?: number - ): LoDashExplicitWrapper; - } - - //_.keyBy - interface LoDashStatic { - /** - * Creates an object composed of keys generated from the results of running each element of collection through - * iteratee. The corresponding value of each key is the last element responsible for generating the key. The - * iteratee function is bound to thisArg and invoked with three arguments: - * (value, index|key, collection). - * - * If a property name is provided for iteratee the created _.property style callback returns the property - * value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for iteratee the created _.matches style callback returns true for elements that - * have the properties of the given object, else false. - * - * @param collection The collection to iterate over. - * @param iteratee The function invoked per iteration. - * @param thisArg The this binding of iteratee. - * @return Returns the composed aggregate object. - */ - keyBy( - collection: List, - iteratee?: ListIterator - ): Dictionary; - - /** - * @see _.keyBy - */ - keyBy( - collection: NumericDictionary, - iteratee?: NumericDictionaryIterator - ): Dictionary; - - /** - * @see _.keyBy - */ - keyBy( - collection: Dictionary, - iteratee?: DictionaryIterator - ): Dictionary; - - /** - * @see _.keyBy - */ - keyBy( - collection: List|NumericDictionary|Dictionary, - iteratee?: string - ): Dictionary; - - /** - * @see _.keyBy - */ - keyBy( - collection: List|NumericDictionary|Dictionary, - iteratee?: W - ): Dictionary; - - /** - * @see _.keyBy - */ - keyBy( - collection: List|NumericDictionary|Dictionary, - iteratee?: Object - ): Dictionary; - } - - interface LoDashImplicitWrapper { - /** - * @see _.keyBy - */ - keyBy( - iteratee?: ListIterator - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.keyBy - */ - keyBy( - iteratee?: ListIterator - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.keyBy - */ - keyBy( - iteratee?: string - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.keyBy - */ - keyBy( - iteratee?: W - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.keyBy - */ - keyBy( - iteratee?: ListIterator|NumericDictionaryIterator|DictionaryIterator - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.keyBy - */ - keyBy( - iteratee?: string - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.keyBy - */ - keyBy( - iteratee?: W - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.keyBy - */ - keyBy( - iteratee?: Object - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashExplicitWrapper { - /** - * @see _.keyBy - */ - keyBy( - iteratee?: ListIterator - ): LoDashExplicitObjectWrapper>; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.keyBy - */ - keyBy( - iteratee?: ListIterator - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.keyBy - */ - keyBy( - iteratee?: string - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.keyBy - */ - keyBy( - iteratee?: W - ): LoDashExplicitObjectWrapper>; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.keyBy - */ - keyBy( - iteratee?: ListIterator|NumericDictionaryIterator|DictionaryIterator - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.keyBy - */ - keyBy( - iteratee?: string - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.keyBy - */ - keyBy( - iteratee?: W - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.keyBy - */ - keyBy( - iteratee?: Object - ): LoDashExplicitObjectWrapper>; - } - - //_.invoke - interface LoDashStatic { - /** - * Invokes the method at path of object. - * @param object The object to query. - * @param path The path of the method to invoke. - * @param args The arguments to invoke the method with. - **/ - invoke( - object: TObject, - path: StringRepresentable|StringRepresentable[], - ...args: any[]): TResult; - - /** - * @see _.invoke - **/ - invoke( - object: Dictionary|TValue[], - path: StringRepresentable|StringRepresentable[], - ...args: any[]): TResult; - - /** - * @see _.invoke - **/ - invoke( - object: any, - path: StringRepresentable|StringRepresentable[], - ...args: any[]): TResult; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.invoke - **/ - invoke( - path: StringRepresentable|StringRepresentable[], - ...args: any[]): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.invoke - **/ - invoke( - path: StringRepresentable|StringRepresentable[], - ...args: any[]): TResult; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.invoke - **/ - invoke( - path: StringRepresentable|StringRepresentable[], - ...args: any[]): TResult; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.invoke - **/ - invoke( - path: StringRepresentable|StringRepresentable[], - ...args: any[]): TResult; - } - - //_.invokeMap - interface LoDashStatic { - /** - * Invokes the method named by methodName on each element in the collection returning - * an array of the results of each invoked method. Additional arguments will be provided - * to each invoked method. If methodName is a function it will be invoked for, and this - * bound to, each element in the collection. - * @param collection The collection to iterate over. - * @param methodName The name of the method to invoke. - * @param args Arguments to invoke the method with. - **/ - invokeMap( - collection: TValue[], - methodName: string, - ...args: any[]): TResult[]; - - /** - * @see _.invokeMap - **/ - invokeMap( - collection: Dictionary, - methodName: string, - ...args: any[]): TResult[]; - - /** - * @see _.invokeMap - **/ - invokeMap( - collection: {}[], - methodName: string, - ...args: any[]): TResult[]; - - /** - * @see _.invokeMap - **/ - invokeMap( - collection: Dictionary<{}>, - methodName: string, - ...args: any[]): TResult[]; - - /** - * @see _.invokeMap - **/ - invokeMap( - collection: TValue[], - method: (...args: any[]) => TResult, - ...args: any[]): TResult[]; - - /** - * @see _.invokeMap - **/ - invokeMap( - collection: Dictionary, - method: (...args: any[]) => TResult, - ...args: any[]): TResult[]; - - /** - * @see _.invokeMap - **/ - invokeMap( - collection: {}[], - method: (...args: any[]) => TResult, - ...args: any[]): TResult[]; - - /** - * @see _.invokeMap - **/ - invokeMap( - collection: Dictionary<{}>, - method: (...args: any[]) => TResult, - ...args: any[]): TResult[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.invokeMap - **/ - invokeMap( - methodName: string, - ...args: any[]): LoDashImplicitArrayWrapper; - - /** - * @see _.invokeMap - **/ - invokeMap( - method: (...args: any[]) => TResult, - ...args: any[]): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.invokeMap - **/ - invokeMap( - methodName: string, - ...args: any[]): LoDashImplicitArrayWrapper; - - /** - * @see _.invokeMap - **/ - invokeMap( - method: (...args: any[]) => TResult, - ...args: any[]): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.invokeMap - **/ - invokeMap( - methodName: string, - ...args: any[]): LoDashExplicitArrayWrapper; - - /** - * @see _.invokeMap - **/ - invokeMap( - method: (...args: any[]) => TResult, - ...args: any[]): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.invokeMap - **/ - invokeMap( - methodName: string, - ...args: any[]): LoDashExplicitArrayWrapper; - - /** - * @see _.invokeMap - **/ - invokeMap( - method: (...args: any[]) => TResult, - ...args: any[]): LoDashExplicitArrayWrapper; - } - - //_.map - interface LoDashStatic { - /** - * Creates an array of values by running each element in collection through iteratee. The iteratee is bound to - * thisArg and invoked with three arguments: (value, index|key, collection). - * - * If a property name is provided for iteratee the created _.property style callback returns the property value - * of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for iteratee the created _.matches style callback returns true for elements that - * have the properties of the given object, else false. - * - * Many lodash methods are guarded to work as iteratees for methods like _.every, _.filter, _.map, _.mapValues, - * _.reject, and _.some. - * - * The guarded methods are: - * ary, callback, chunk, clone, create, curry, curryRight, drop, dropRight, every, fill, flatten, invert, max, - * min, parseInt, slice, sortBy, take, takeRight, template, trim, trimLeft, trimRight, trunc, random, range, - * sample, some, sum, uniq, and words - * - * @param collection The collection to iterate over. - * @param iteratee The function invoked per iteration. - * @param thisArg The this binding of iteratee. - * @return Returns the new mapped array. - */ - map( - collection: List, - iteratee?: ListIterator - ): TResult[]; - - /** - * @see _.map - */ - map( - collection: Dictionary, - iteratee?: DictionaryIterator - ): TResult[]; - - map( - collection: NumericDictionary, - iteratee?: NumericDictionaryIterator - ): TResult[]; - - /** - * @see _.map - */ - map( - collection: List|Dictionary|NumericDictionary, - iteratee?: string - ): TResult[]; - - /** - * @see _.map - */ - map( - collection: List|Dictionary|NumericDictionary, - iteratee?: TObject - ): boolean[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.map - */ - map( - iteratee?: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.map - */ - map( - iteratee?: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.map - */ - map( - iteratee?: TObject - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.map - */ - map( - iteratee?: ListIterator|DictionaryIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.map - */ - map( - iteratee?: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.map - */ - map( - iteratee?: TObject - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.map - */ - map( - iteratee?: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.map - */ - map( - iteratee?: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.map - */ - map( - iteratee?: TObject - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.map - */ - map( - iteratee?: ListIterator|DictionaryIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.map - */ - map( - iteratee?: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.map - */ - map( - iteratee?: TObject - ): LoDashExplicitArrayWrapper; - } - - //_.partition - interface LoDashStatic { - /** - * Creates an array of elements split into two groups, the first of which contains elements predicate returns truthy for, - * while the second of which contains elements predicate returns falsey for. - * The predicate is bound to thisArg and invoked with three arguments: (value, index|key, collection). - * - * If a property name is provided for predicate the created _.property style callback - * returns the property value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback - * returns true for elements that have a matching property value, else false. - * - * If an object is provided for predicate the created _.matches style callback returns - * true for elements that have the properties of the given object, else false. - * - * @param collection The collection to iterate over. - * @param callback The function called per iteration. - * @param thisArg The this binding of predicate. - * @return Returns the array of grouped elements. - **/ - partition( - collection: List, - callback: ListIterator): T[][]; - - /** - * @see _.partition - **/ - partition( - collection: Dictionary, - callback: DictionaryIterator): T[][]; - - /** - * @see _.partition - **/ - partition( - collection: List, - whereValue: W): T[][]; - - /** - * @see _.partition - **/ - partition( - collection: Dictionary, - whereValue: W): T[][]; - - /** - * @see _.partition - **/ - partition( - collection: List, - path: string, - srcValue: any): T[][]; - - /** - * @see _.partition - **/ - partition( - collection: Dictionary, - path: string, - srcValue: any): T[][]; - - /** - * @see _.partition - **/ - partition( - collection: List, - pluckValue: string): T[][]; - - /** - * @see _.partition - **/ - partition( - collection: Dictionary, - pluckValue: string): T[][]; - } - - interface LoDashImplicitStringWrapper { - /** - * @see _.partition - */ - partition( - callback: ListIterator): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.partition - */ - partition( - callback: ListIterator): LoDashImplicitArrayWrapper; - /** - * @see _.partition - */ - partition( - whereValue: W): LoDashImplicitArrayWrapper; - /** - * @see _.partition - */ - partition( - path: string, - srcValue: any): LoDashImplicitArrayWrapper; - /** - * @see _.partition - */ - partition( - pluckValue: string): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.partition - */ - partition( - callback: ListIterator): LoDashImplicitArrayWrapper; - - /** - * @see _.partition - */ - partition( - callback: DictionaryIterator): LoDashImplicitArrayWrapper; - - /** - * @see _.partition - */ - partition( - whereValue: W): LoDashImplicitArrayWrapper; - - /** - * @see _.partition - */ - partition( - path: string, - srcValue: any): LoDashImplicitArrayWrapper; - - /** - * @see _.partition - */ - partition( - pluckValue: string): LoDashImplicitArrayWrapper; - } - - //_.reduce - interface LoDashStatic { - /** - * Reduces a collection to a value which is the accumulated result of running each - * element in the collection through the callback, where each successive callback execution - * consumes the return value of the previous execution. If accumulator is not provided the - * first element of the collection will be used as the initial accumulator value. The callback - * is bound to thisArg and invoked with four arguments; (accumulator, value, index|key, collection). - * @param collection The collection to iterate over. - * @param callback The function called per iteration. - * @param accumulator Initial value of the accumulator. - * @param thisArg The this binding of callback. - * @return Returns the accumulated value. - **/ - reduce( - collection: Array, - callback: MemoIterator, - accumulator: TResult): TResult; - - /** - * @see _.reduce - **/ - reduce( - collection: List, - callback: MemoIterator, - accumulator: TResult): TResult; - - /** - * @see _.reduce - **/ - reduce( - collection: Dictionary, - callback: MemoIterator, - accumulator: TResult): TResult; - - /** - * @see _.reduce - **/ - reduce( - collection: NumericDictionary, - callback: MemoIterator, - accumulator: TResult): TResult; - - /** - * @see _.reduce - **/ - reduce( - collection: Array, - callback: MemoIterator): TResult; - - /** - * @see _.reduce - **/ - reduce( - collection: List, - callback: MemoIterator): TResult; - - /** - * @see _.reduce - **/ - reduce( - collection: Dictionary, - callback: MemoIterator): TResult; - - /** - * @see _.reduce - **/ - reduce( - collection: NumericDictionary, - callback: MemoIterator): TResult; - - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.reduce - **/ - reduce( - callback: MemoIterator, - accumulator: TResult): TResult; - - /** - * @see _.reduce - **/ - reduce( - callback: MemoIterator): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.reduce - **/ - reduce( - callback: MemoIterator, - accumulator: TResult): TResult; - - /** - * @see _.reduce - **/ - reduce( - callback: MemoIterator): TResult; - } - - //_.reduceRight - interface LoDashStatic { - /** - * This method is like _.reduce except that it iterates over elements of a collection from - * right to left. - * @param collection The collection to iterate over. - * @param callback The function called per iteration. - * @param accumulator Initial value of the accumulator. - * @param thisArg The this binding of callback. - * @return The accumulated value. - **/ - reduceRight( - collection: Array, - callback: MemoIterator, - accumulator: TResult): TResult; - - /** - * @see _.reduceRight - **/ - reduceRight( - collection: List, - callback: MemoIterator, - accumulator: TResult): TResult; - - /** - * @see _.reduceRight - **/ - reduceRight( - collection: Dictionary, - callback: MemoIterator, - accumulator: TResult): TResult; - - /** - * @see _.reduceRight - **/ - reduceRight( - collection: Array, - callback: MemoIterator): TResult; - - /** - * @see _.reduceRight - **/ - reduceRight( - collection: List, - callback: MemoIterator): TResult; - - /** - * @see _.reduceRight - **/ - reduceRight( - collection: Dictionary, - callback: MemoIterator): TResult; - } - - //_.reject - interface LoDashStatic { - /** - * The opposite of _.filter; this method returns the elements of collection that predicate does not return - * truthy for. - * - * @param collection The collection to iterate over. - * @param predicate The function invoked per iteration. - * @param thisArg The this binding of predicate. - * @return Returns the new filtered array. - */ - reject( - collection: List, - predicate?: ListIterator - ): T[]; - - /** - * @see _.reject - */ - reject( - collection: Dictionary, - predicate?: DictionaryIterator - ): T[]; - - /** - * @see _.reject - */ - reject( - collection: string, - predicate?: StringIterator - ): string[]; - - /** - * @see _.reject - */ - reject( - collection: List|Dictionary, - predicate: string - ): T[]; - - /** - * @see _.reject - */ - reject( - collection: List|Dictionary, - predicate: W - ): T[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.reject - */ - reject( - predicate?: StringIterator - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.reject - */ - reject( - predicate: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.reject - */ - reject( - predicate: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.reject - */ - reject(predicate: W): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.reject - */ - reject( - predicate: ListIterator|DictionaryIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.reject - */ - reject( - predicate: string - ): LoDashImplicitArrayWrapper; - - /** - * @see _.reject - */ - reject(predicate: W): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.reject - */ - reject( - predicate?: StringIterator - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.reject - */ - reject( - predicate: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.reject - */ - reject( - predicate: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.reject - */ - reject(predicate: W): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.reject - */ - reject( - predicate: ListIterator|DictionaryIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.reject - */ - reject( - predicate: string - ): LoDashExplicitArrayWrapper; - - /** - * @see _.reject - */ - reject(predicate: W): LoDashExplicitArrayWrapper; - } - - //_.sample - interface LoDashStatic { - /** - * Gets a random element from collection. - * - * @param collection The collection to sample. - * @return Returns the random element. - */ - sample( - collection: List|Dictionary|NumericDictionary - ): T; - - /** - * @see _.sample - */ - sample( - collection: O - ): T; - - /** - * @see _.sample - */ - sample( - collection: Object - ): T; - } - - interface LoDashImplicitWrapper { - /** - * @see _.sample - */ - sample(): string; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.sample - */ - sample(): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.sample - */ - sample(): T; - } - - interface LoDashExplicitWrapper { - /** - * @see _.sample - */ - sample(): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.sample - */ - sample(): TWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.sample - */ - sample(): TWrapper; - } - - //_.sampleSize - interface LoDashStatic { - /** - * Gets n random elements at unique keys from collection up to the size of collection. - * - * @param collection The collection to sample. - * @param n The number of elements to sample. - * @return Returns the random elements. - */ - sampleSize( - collection: List|Dictionary|NumericDictionary, - n?: number - ): T[]; - - /** - * @see _.sampleSize - */ - sampleSize( - collection: O, - n?: number - ): T[]; - - /** - * @see _.sampleSize - */ - sampleSize( - collection: Object, - n?: number - ): T[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.sampleSize - */ - sampleSize( - n?: number - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.sampleSize - */ - sampleSize( - n?: number - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.sampleSize - */ - sampleSize( - n?: number - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.sampleSize - */ - sampleSize( - n?: number - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.sampleSize - */ - sampleSize( - n?: number - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.sampleSize - */ - sampleSize( - n?: number - ): LoDashExplicitArrayWrapper; - } - - //_.shuffle - interface LoDashStatic { - /** - * Creates an array of shuffled values, using a version of the Fisher-Yates shuffle. - * - * @param collection The collection to shuffle. - * @return Returns the new shuffled array. - */ - shuffle(collection: List|Dictionary): T[]; - - /** - * @see _.shuffle - */ - shuffle(collection: string): string[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.shuffle - */ - shuffle(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.shuffle - */ - shuffle(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.shuffle - */ - shuffle(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.shuffle - */ - shuffle(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.shuffle - */ - shuffle(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.shuffle - */ - shuffle(): LoDashExplicitArrayWrapper; - } - - //_.size - interface LoDashStatic { - /** - * Gets the size of collection by returning its length for array-like values or the number of own enumerable - * properties for objects. - * - * @param collection The collection to inspect. - * @return Returns the size of collection. - */ - size(collection: List|Dictionary): number; - - /** - * @see _.size - */ - size(collection: string): number; - } - - interface LoDashImplicitWrapper { - /** - * @see _.size - */ - size(): number; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.size - */ - size(): number; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.size - */ - size(): number; - } - - interface LoDashExplicitWrapper { - /** - * @see _.size - */ - size(): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.size - */ - size(): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.size - */ - size(): LoDashExplicitWrapper; - } - - //_.some - interface LoDashStatic { - /** - * Checks if predicate returns truthy for any element of collection. Iteration is stopped once predicate - * returns truthy. The predicate is invoked with three arguments: (value, index|key, collection). - * - * @param collection The collection to iterate over. - * @param predicate The function invoked per iteration. - * @return Returns true if any element passes the predicate check, else false. - */ - some( - collection: List, - predicate?: ListIterator - ): boolean; - - /** - * @see _.some - */ - some( - collection: Dictionary, - predicate?: DictionaryIterator - ): boolean; - - /** - * @see _.some - */ - some( - collection: NumericDictionary, - predicate?: NumericDictionaryIterator - ): boolean; - - /** - * @see _.some - */ - some( - collection: Object, - predicate?: ObjectIterator - ): boolean; - - /** - * @see _.some - */ - some( - collection: List|Dictionary|NumericDictionary, - predicate?: string|[string, any] - ): boolean; - - - /** - * @see _.some - */ - some( - collection: Object, - predicate?: string|[string, any] - ): boolean; - - /** - * @see _.some - */ - some( - collection: List|Dictionary|NumericDictionary, - predicate?: TObject - ): boolean; - - /** - * @see _.some - */ - some( - collection: List|Dictionary|NumericDictionary, - predicate?: Object - ): boolean; - - /** - * @see _.some - */ - some( - collection: Object, - predicate?: TObject - ): boolean; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.some - */ - some( - predicate?: ListIterator|NumericDictionaryIterator - ): boolean; - - /** - * @see _.some - */ - some( - predicate?: string|[string, any] - ): boolean; - - /** - * @see _.some - */ - some( - predicate?: TObject - ): boolean; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.some - */ - some( - predicate?: ListIterator|DictionaryIterator|NumericDictionaryIterator|ObjectIterator - ): boolean; - - /** - * @see _.some - */ - some( - predicate?: string|[string, any] - ): boolean; - - /** - * @see _.some - */ - some( - predicate?: TObject - ): boolean; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.some - */ - some( - predicate?: ListIterator|NumericDictionaryIterator - ): LoDashExplicitWrapper; - - /** - * @see _.some - */ - some( - predicate?: string|[string, any] - ): LoDashExplicitWrapper; - - /** - * @see _.some - */ - some( - predicate?: TObject - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.some - */ - some( - predicate?: ListIterator|DictionaryIterator|NumericDictionaryIterator|ObjectIterator - ): LoDashExplicitWrapper; - - /** - * @see _.some - */ - some( - predicate?: string|[string, any] - ): LoDashExplicitWrapper; - - /** - * @see _.some - */ - some( - predicate?: TObject - ): LoDashExplicitWrapper; - } - - //_.sortBy - interface LoDashStatic { - /** - * Creates an array of elements, sorted in ascending order by the results of - * running each element in a collection through each iteratee. This method - * performs a stable sort, that is, it preserves the original sort order of - * equal elements. The iteratees are invoked with one argument: (value). - * - * @static - * @memberOf _ - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {...(Function|Function[]|Object|Object[]|string|string[])} [iteratees=[_.identity]] - * The iteratees to sort by, specified individually or in arrays. - * @returns {Array} Returns the new sorted array. - * @example - * - * var users = [ - * { 'user': 'fred', 'age': 48 }, - * { 'user': 'barney', 'age': 36 }, - * { 'user': 'fred', 'age': 42 }, - * { 'user': 'barney', 'age': 34 } - * ]; - * - * _.sortBy(users, function(o) { return o.user; }); - * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 42]] - * - * _.sortBy(users, ['user', 'age']); - * // => objects for [['barney', 34], ['barney', 36], ['fred', 42], ['fred', 48]] - * - * _.sortBy(users, 'user', function(o) { - * return Math.floor(o.age / 10); - * }); - * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 42]] - */ - sortBy( - collection: List, - iteratee?: ListIterator - ): T[]; - - /** - * @see _.sortBy - */ - sortBy( - collection: Dictionary, - iteratee?: DictionaryIterator - ): T[]; - - /** - * @see _.sortBy - */ - sortBy( - collection: List|Dictionary, - iteratee: string - ): T[]; - - /** - * @see _.sortBy - */ - sortBy( - collection: List|Dictionary, - whereValue: W - ): T[]; - - /** - * @see _.sortBy - */ - sortBy( - collection: List|Dictionary - ): T[]; - - /** - * @see _.sortBy - */ - sortBy( - collection: (Array|List), - iteratees: (ListIterator|string|Object)[]): T[]; - - /** - * @see _.sortBy - */ - sortBy( - collection: (Array|List), - ...iteratees: (ListIterator|Object|string)[]): T[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.sortBy - */ - sortBy( - iteratee?: ListIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.sortBy - */ - sortBy(iteratee: string): LoDashImplicitArrayWrapper; - - /** - * @see _.sortBy - */ - sortBy(whereValue: W): LoDashImplicitArrayWrapper; - - /** - * @see _.sortBy - */ - sortBy(): LoDashImplicitArrayWrapper; - - /** - * @see _.sortBy - */ - sortBy(...iteratees: (ListIterator|Object|string)[]): LoDashImplicitArrayWrapper; - - /** - * @see _.sortBy - **/ - sortBy(iteratees: (ListIterator|string|Object)[]): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.sortBy - */ - sortBy( - iteratee?: ListIterator|DictionaryIterator - ): LoDashImplicitArrayWrapper; - - /** - * @see _.sortBy - */ - sortBy(iteratee: string): LoDashImplicitArrayWrapper; - - /** - * @see _.sortBy - */ - sortBy(whereValue: W): LoDashImplicitArrayWrapper; - - /** - * @see _.sortBy - */ - sortBy(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.sortBy - */ - sortBy( - iteratee?: ListIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.sortBy - */ - sortBy(iteratee: string): LoDashExplicitArrayWrapper; - - /** - * @see _.sortBy - */ - sortBy(whereValue: W): LoDashExplicitArrayWrapper; - - /** - * @see _.sortBy - */ - sortBy(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.sortBy - */ - sortBy( - iteratee?: ListIterator|DictionaryIterator - ): LoDashExplicitArrayWrapper; - - /** - * @see _.sortBy - */ - sortBy(iteratee: string): LoDashExplicitArrayWrapper; - - /** - * @see _.sortBy - */ - sortBy(whereValue: W): LoDashExplicitArrayWrapper; - - /** - * @see _.sortBy - */ - sortBy(): LoDashExplicitArrayWrapper; - } - - //_.orderBy - interface LoDashStatic { - /** - * This method is like `_.sortBy` except that it allows specifying the sort - * orders of the iteratees to sort by. If `orders` is unspecified, all values - * are sorted in ascending order. Otherwise, specify an order of "desc" for - * descending or "asc" for ascending sort order of corresponding values. - * - * @static - * @memberOf _ - * @category Collection - * @param {Array|Object} collection The collection to iterate over. - * @param {Function[]|Object[]|string[]} [iteratees=[_.identity]] The iteratees to sort by. - * @param {string[]} [orders] The sort orders of `iteratees`. - * @param- {Object} [guard] Enables use as an iteratee for functions like `_.reduce`. - * @returns {Array} Returns the new sorted array. - * @example - * - * var users = [ - * { 'user': 'fred', 'age': 48 }, - * { 'user': 'barney', 'age': 34 }, - * { 'user': 'fred', 'age': 42 }, - * { 'user': 'barney', 'age': 36 } - * ]; - * - * // sort by `user` in ascending order and by `age` in descending order - * _.orderBy(users, ['user', 'age'], ['asc', 'desc']); - * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 42]] - */ - orderBy( - collection: List, - iteratees: ListIterator|string|W|(ListIterator|string|W)[], - orders?: boolean|string|(boolean|string)[] - ): T[]; - - /** - * @see _.orderBy - */ - orderBy( - collection: List, - iteratees: ListIterator|string|Object|(ListIterator|string|Object)[], - orders?: boolean|string|(boolean|string)[] - ): T[]; - - /** - * @see _.orderBy - */ - orderBy( - collection: NumericDictionary, - iteratees: NumericDictionaryIterator|string|W|(NumericDictionaryIterator|string|W)[], - orders?: boolean|string|(boolean|string)[] - ): T[]; - - /** - * @see _.orderBy - */ - orderBy( - collection: NumericDictionary, - iteratees: NumericDictionaryIterator|string|Object|(NumericDictionaryIterator|string|Object)[], - orders?: boolean|string|(boolean|string)[] - ): T[]; - - /** - * @see _.orderBy - */ - orderBy( - collection: Dictionary, - iteratees: DictionaryIterator|string|W|(DictionaryIterator|string|W)[], - orders?: boolean|string|(boolean|string)[] - ): T[]; - - /** - * @see _.orderBy - */ - orderBy( - collection: Dictionary, - iteratees: DictionaryIterator|string|Object|(DictionaryIterator|string|Object)[], - orders?: boolean|string|(boolean|string)[] - ): T[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.orderBy - */ - orderBy( - iteratees: ListIterator|string|(ListIterator|string)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.orderBy - */ - orderBy( - iteratees: ListIterator|string|W|(ListIterator|string|W)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.orderBy - */ - orderBy( - iteratees: ListIterator|string|W|(ListIterator|string|W)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashImplicitArrayWrapper; - - /** - * @see _.orderBy - */ - orderBy( - iteratees: ListIterator|string|Object|(ListIterator|string|Object)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashImplicitArrayWrapper; - - /** - * @see _.orderBy - */ - orderBy( - iteratees: NumericDictionaryIterator|string|W|(NumericDictionaryIterator|string|W)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashImplicitArrayWrapper; - - /** - * @see _.orderBy - */ - orderBy( - iteratees: NumericDictionaryIterator|string|Object|(NumericDictionaryIterator|string|Object)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashImplicitArrayWrapper; - - /** - * @see _.orderBy - */ - orderBy( - iteratees: DictionaryIterator|string|W|(DictionaryIterator|string|W)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashImplicitArrayWrapper; - - /** - * @see _.orderBy - */ - orderBy( - iteratees: DictionaryIterator|string|Object|(DictionaryIterator|string|Object)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.orderBy - */ - orderBy( - iteratees: ListIterator|string|(ListIterator|string)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.orderBy - */ - orderBy( - iteratees: ListIterator|string|W|(ListIterator|string|W)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.orderBy - */ - orderBy( - iteratees: ListIterator|string|W|(ListIterator|string|W)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashExplicitArrayWrapper; - - /** - * @see _.orderBy - */ - orderBy( - iteratees: ListIterator|string|Object|(ListIterator|string|Object)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashExplicitArrayWrapper; - - /** - * @see _.orderBy - */ - orderBy( - iteratees: NumericDictionaryIterator|string|W|(NumericDictionaryIterator|string|W)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashExplicitArrayWrapper; - - /** - * @see _.orderBy - */ - orderBy( - iteratees: NumericDictionaryIterator|string|Object|(NumericDictionaryIterator|string|Object)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashExplicitArrayWrapper; - - /** - * @see _.orderBy - */ - orderBy( - iteratees: DictionaryIterator|string|W|(DictionaryIterator|string|W)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashExplicitArrayWrapper; - - /** - * @see _.orderBy - */ - orderBy( - iteratees: DictionaryIterator|string|Object|(DictionaryIterator|string|Object)[], - orders?: boolean|string|(boolean|string)[] - ): LoDashExplicitArrayWrapper; - } - - /******** - * Date * - ********/ - - //_.now - interface LoDashStatic { - /** - * Gets the number of milliseconds that have elapsed since the Unix epoch (1 January 1970 00:00:00 UTC). - * - * @return The number of milliseconds. - */ - now(): number; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.now - */ - now(): number; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.now - */ - now(): LoDashExplicitWrapper; - } - - /************* - * Functions * - *************/ - - //_.after - interface LoDashStatic { - /** - * The opposite of _.before; this method creates a function that invokes func once it’s called n or more times. - * - * @param n The number of calls before func is invoked. - * @param func The function to restrict. - * @return Returns the new restricted function. - */ - after( - n: number, - func: TFunc - ): TFunc; - } - - interface LoDashImplicitWrapper { - /** - * @see _.after - **/ - after(func: TFunc): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.after - **/ - after(func: TFunc): LoDashExplicitObjectWrapper; - } - - //_.ary - interface LoDashStatic { - /** - * Creates a function that accepts up to n arguments ignoring any additional arguments. - * - * @param func The function to cap arguments for. - * @param n The arity cap. - * @returns Returns the new function. - */ - ary( - func: Function, - n?: number - ): TResult; - - ary( - func: T, - n?: number - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.ary - */ - ary(n?: number): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.ary - */ - ary(n?: number): LoDashExplicitObjectWrapper; - } - - //_.before - interface LoDashStatic { - /** - * Creates a function that invokes func, with the this binding and arguments of the created function, while - * it’s called less than n times. Subsequent calls to the created function return the result of the last func - * invocation. - * - * @param n The number of calls at which func is no longer invoked. - * @param func The function to restrict. - * @return Returns the new restricted function. - */ - before( - n: number, - func: TFunc - ): TFunc; - } - - interface LoDashImplicitWrapper { - /** - * @see _.before - **/ - before(func: TFunc): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.before - **/ - before(func: TFunc): LoDashExplicitObjectWrapper; - } - - //_.bind - interface FunctionBind { - placeholder: any; - - ( - func: T, - thisArg: any, - ...partials: any[] - ): TResult; - - ( - func: Function, - thisArg: any, - ...partials: any[] - ): TResult; - } - - interface LoDashStatic { - /** - * Creates a function that invokes func with the this binding of thisArg and prepends any additional _.bind - * arguments to those provided to the bound function. - * - * The _.bind.placeholder value, which defaults to _ in monolithic builds, may be used as a placeholder for - * partially applied arguments. - * - * Note: Unlike native Function#bind this method does not set the "length" property of bound functions. - * - * @param func The function to bind. - * @param thisArg The this binding of func. - * @param partials The arguments to be partially applied. - * @return Returns the new bound function. - */ - bind: FunctionBind; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.bind - */ - bind( - thisArg: any, - ...partials: any[] - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.bind - */ - bind( - thisArg: any, - ...partials: any[] - ): LoDashExplicitObjectWrapper; - } - - //_.bindAll - interface LoDashStatic { - /** - * Binds methods of an object to the object itself, overwriting the existing method. Method names may be - * specified as individual arguments or as arrays of method names. If no method names are provided all - * enumerable function properties, own and inherited, of object are bound. - * - * Note: This method does not set the "length" property of bound functions. - * - * @param object The object to bind and assign the bound methods to. - * @param methodNames The object method names to bind, specified as individual method names or arrays of - * method names. - * @return Returns object. - */ - bindAll( - object: T, - ...methodNames: (string|string[])[] - ): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.bindAll - */ - bindAll(...methodNames: (string|string[])[]): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.bindAll - */ - bindAll(...methodNames: (string|string[])[]): LoDashExplicitObjectWrapper; - } - - //_.bindKey - interface FunctionBindKey { - placeholder: any; - - ( - object: T, - key: any, - ...partials: any[] - ): TResult; - - ( - object: Object, - key: any, - ...partials: any[] - ): TResult; - } - - interface LoDashStatic { - /** - * Creates a function that invokes the method at object[key] and prepends any additional _.bindKey arguments - * to those provided to the bound function. - * - * This method differs from _.bind by allowing bound functions to reference methods that may be redefined - * or don’t yet exist. See Peter Michaux’s article for more details. - * - * The _.bindKey.placeholder value, which defaults to _ in monolithic builds, may be used as a placeholder - * for partially applied arguments. - * - * @param object The object the method belongs to. - * @param key The key of the method. - * @param partials The arguments to be partially applied. - * @return Returns the new bound function. - */ - bindKey: FunctionBindKey; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.bindKey - */ - bindKey( - key: any, - ...partials: any[] - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.bindKey - */ - bindKey( - key: any, - ...partials: any[] - ): LoDashExplicitObjectWrapper; - } - - //_.createCallback - interface LoDashStatic { - /** - * Produces a callback bound to an optional thisArg. If func is a property name the created - * callback will return the property value for a given element. If func is an object the created - * callback will return true for elements that contain the equivalent object properties, - * otherwise it will return false. - * @param func The value to convert to a callback. - * @param thisArg The this binding of the created callback. - * @param argCount The number of arguments the callback accepts. - * @return A callback function. - **/ - createCallback( - func: string, - argCount?: number): () => any; - - /** - * @see _.createCallback - **/ - createCallback( - func: Dictionary, - argCount?: number): () => boolean; - } - - interface LoDashImplicitWrapper { - /** - * @see _.createCallback - **/ - createCallback( - argCount?: number): LoDashImplicitObjectWrapper<() => any>; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.createCallback - **/ - createCallback( - argCount?: number): LoDashImplicitObjectWrapper<() => any>; - } - - //_.curry - interface LoDashStatic { - /** - * Creates a function that accepts one or more arguments of func that when called either invokes func returning - * its result, if all func arguments have been provided, or returns a function that accepts one or more of the - * remaining func arguments, and so on. The arity of func may be specified if func.length is not sufficient. - * @param func The function to curry. - * @return Returns the new curried function. - */ - curry(func: (t1: T1) => R): - CurriedFunction1; - /** - * Creates a function that accepts one or more arguments of func that when called either invokes func returning - * its result, if all func arguments have been provided, or returns a function that accepts one or more of the - * remaining func arguments, and so on. The arity of func may be specified if func.length is not sufficient. - * @param func The function to curry. - * @return Returns the new curried function. - */ - curry(func: (t1: T1, t2: T2) => R): - CurriedFunction2; - /** - * Creates a function that accepts one or more arguments of func that when called either invokes func returning - * its result, if all func arguments have been provided, or returns a function that accepts one or more of the - * remaining func arguments, and so on. The arity of func may be specified if func.length is not sufficient. - * @param func The function to curry. - * @return Returns the new curried function. - */ - curry(func: (t1: T1, t2: T2, t3: T3) => R): - CurriedFunction3; - /** - * Creates a function that accepts one or more arguments of func that when called either invokes func returning - * its result, if all func arguments have been provided, or returns a function that accepts one or more of the - * remaining func arguments, and so on. The arity of func may be specified if func.length is not sufficient. - * @param func The function to curry. - * @return Returns the new curried function. - */ - curry(func: (t1: T1, t2: T2, t3: T3, t4: T4) => R): - CurriedFunction4; - /** - * Creates a function that accepts one or more arguments of func that when called either invokes func returning - * its result, if all func arguments have been provided, or returns a function that accepts one or more of the - * remaining func arguments, and so on. The arity of func may be specified if func.length is not sufficient. - * @param func The function to curry. - * @return Returns the new curried function. - */ - curry(func: (t1: T1, t2: T2, t3: T3, t4: T4, t5: T5) => R): - CurriedFunction5; - /** - * Creates a function that accepts one or more arguments of func that when called either invokes func returning - * its result, if all func arguments have been provided, or returns a function that accepts one or more of the - * remaining func arguments, and so on. The arity of func may be specified if func.length is not sufficient. - * @param func The function to curry. - * @param arity The arity of func. - * @return Returns the new curried function. - */ - curry( - func: Function, - arity?: number): TResult; - } - - interface CurriedFunction1 { - (): CurriedFunction1; - (t1: T1): R; - } - - interface CurriedFunction2 { - (): CurriedFunction2; - (t1: T1): CurriedFunction1; - (t1: T1, t2: T2): R; - } - - interface CurriedFunction3 { - (): CurriedFunction3; - (t1: T1): CurriedFunction2; - (t1: T1, t2: T2): CurriedFunction1; - (t1: T1, t2: T2, t3: T3): R; - } - - interface CurriedFunction4 { - (): CurriedFunction4; - (t1: T1): CurriedFunction3; - (t1: T1, t2: T2): CurriedFunction2; - (t1: T1, t2: T2, t3: T3): CurriedFunction1; - (t1: T1, t2: T2, t3: T3, t4: T4): R; - } - - interface CurriedFunction5 { - (): CurriedFunction5; - (t1: T1): CurriedFunction4; - (t1: T1, t2: T2): CurriedFunction3; - (t1: T1, t2: T2, t3: T3): CurriedFunction2; - (t1: T1, t2: T2, t3: T3, t4: T4): CurriedFunction1; - (t1: T1, t2: T2, t3: T3, t4: T4, t5: T5): R; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.curry - **/ - curry(arity?: number): LoDashImplicitObjectWrapper; - } - - //_.curryRight - interface LoDashStatic { - /** - * This method is like _.curry except that arguments are applied to func in the manner of _.partialRight - * instead of _.partial. - * @param func The function to curry. - * @return Returns the new curried function. - */ - curryRight(func: (t1: T1) => R): - CurriedFunction1; - /** - * This method is like _.curry except that arguments are applied to func in the manner of _.partialRight - * instead of _.partial. - * @param func The function to curry. - * @return Returns the new curried function. - */ - curryRight(func: (t1: T1, t2: T2) => R): - CurriedFunction2; - /** - * This method is like _.curry except that arguments are applied to func in the manner of _.partialRight - * instead of _.partial. - * @param func The function to curry. - * @return Returns the new curried function. - */ - curryRight(func: (t1: T1, t2: T2, t3: T3) => R): - CurriedFunction3; - /** - * This method is like _.curry except that arguments are applied to func in the manner of _.partialRight - * instead of _.partial. - * @param func The function to curry. - * @return Returns the new curried function. - */ - curryRight(func: (t1: T1, t2: T2, t3: T3, t4: T4) => R): - CurriedFunction4; - /** - * This method is like _.curry except that arguments are applied to func in the manner of _.partialRight - * instead of _.partial. - * @param func The function to curry. - * @return Returns the new curried function. - */ - curryRight(func: (t1: T1, t2: T2, t3: T3, t4: T4, t5: T5) => R): - CurriedFunction5; - /** - * This method is like _.curry except that arguments are applied to func in the manner of _.partialRight - * instead of _.partial. - * @param func The function to curry. - * @param arity The arity of func. - * @return Returns the new curried function. - */ - curryRight( - func: Function, - arity?: number): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.curryRight - **/ - curryRight(arity?: number): LoDashImplicitObjectWrapper; - } - - //_.debounce - interface DebounceSettings { - /** - * Specify invoking on the leading edge of the timeout. - */ - leading?: boolean; - - /** - * The maximum time func is allowed to be delayed before it’s invoked. - */ - maxWait?: number; - - /** - * Specify invoking on the trailing edge of the timeout. - */ - trailing?: boolean; - } - - interface LoDashStatic { - /** - * Creates a debounced function that delays invoking func until after wait milliseconds have elapsed since - * the last time the debounced function was invoked. The debounced function comes with a cancel method to - * cancel delayed invocations. Provide an options object to indicate that func should be invoked on the - * leading and/or trailing edge of the wait timeout. Subsequent calls to the debounced function return the - * result of the last func invocation. - * - * Note: If leading and trailing options are true, func is invoked on the trailing edge of the timeout only - * if the the debounced function is invoked more than once during the wait timeout. - * - * See David Corbacho’s article for details over the differences between _.debounce and _.throttle. - * - * @param func The function to debounce. - * @param wait The number of milliseconds to delay. - * @param options The options object. - * @param options.leading Specify invoking on the leading edge of the timeout. - * @param options.maxWait The maximum time func is allowed to be delayed before it’s invoked. - * @param options.trailing Specify invoking on the trailing edge of the timeout. - * @return Returns the new debounced function. - */ - debounce( - func: T, - wait?: number, - options?: DebounceSettings - ): T & Cancelable; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.debounce - */ - debounce( - wait?: number, - options?: DebounceSettings - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.debounce - */ - debounce( - wait?: number, - options?: DebounceSettings - ): LoDashExplicitObjectWrapper; - } - - //_.defer - interface LoDashStatic { - /** - * Defers invoking the func until the current call stack has cleared. Any additional arguments are provided to - * func when it’s invoked. - * - * @param func The function to defer. - * @param args The arguments to invoke the function with. - * @return Returns the timer id. - */ - defer( - func: T, - ...args: any[] - ): number; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.defer - */ - defer(...args: any[]): LoDashImplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.defer - */ - defer(...args: any[]): LoDashExplicitWrapper; - } - - //_.delay - interface LoDashStatic { - /** - * Invokes func after wait milliseconds. Any additional arguments are provided to func when it’s invoked. - * - * @param func The function to delay. - * @param wait The number of milliseconds to delay invocation. - * @param args The arguments to invoke the function with. - * @return Returns the timer id. - */ - delay( - func: T, - wait: number, - ...args: any[] - ): number; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.delay - */ - delay( - wait: number, - ...args: any[] - ): LoDashImplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.delay - */ - delay( - wait: number, - ...args: any[] - ): LoDashExplicitWrapper; - } - - interface LoDashStatic { - /** - * Creates a function that invokes `func` with arguments reversed. - * - * @static - * @memberOf _ - * @category Function - * @param {Function} func The function to flip arguments for. - * @returns {Function} Returns the new function. - * @example - * - * var flipped = _.flip(function() { - * return _.toArray(arguments); - * }); - * - * flipped('a', 'b', 'c', 'd'); - * // => ['d', 'c', 'b', 'a'] - */ - flip(func: T): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.flip - */ - flip(): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.flip - */ - flip(): LoDashExplicitObjectWrapper; - } - - //_.flow - interface LoDashStatic { - /** - * Creates a function that returns the result of invoking the provided functions with the this binding of the - * created function, where each successive invocation is supplied the return value of the previous. - * - * @param funcs Functions to invoke. - * @return Returns the new function. - */ - flow(...funcs: Function[]): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.flow - */ - flow(...funcs: Function[]): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.flow - */ - flow(...funcs: Function[]): LoDashExplicitObjectWrapper; - } - - //_.flowRight - interface LoDashStatic { - /** - * This method is like _.flow except that it creates a function that invokes the provided functions from right - * to left. - * - * @param funcs Functions to invoke. - * @return Returns the new function. - */ - flowRight(...funcs: Function[]): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.flowRight - */ - flowRight(...funcs: Function[]): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.flowRight - */ - flowRight(...funcs: Function[]): LoDashExplicitObjectWrapper; - } - - - //_.memoize - interface MemoizedFunction extends Function { - cache: MapCache; - } - - interface LoDashStatic { - /** - * Creates a function that memoizes the result of func. If resolver is provided it determines the cache key for - * storing the result based on the arguments provided to the memoized function. By default, the first argument - * provided to the memoized function is coerced to a string and used as the cache key. The func is invoked with - * the this binding of the memoized function. - * - * @param func The function to have its output memoized. - * @param resolver The function to resolve the cache key. - * @return Returns the new memoizing function. - */ - memoize: { - (func: T, resolver?: Function): T & MemoizedFunction; - Cache: MapCache; - } - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.memoize - */ - memoize(resolver?: Function): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.memoize - */ - memoize(resolver?: Function): LoDashExplicitObjectWrapper; - } - - //_.overArgs (was _.modArgs) - interface LoDashStatic { - /** - * Creates a function that runs each argument through a corresponding transform function. - * - * @param func The function to wrap. - * @param transforms The functions to transform arguments, specified as individual functions or arrays - * of functions. - * @return Returns the new function. - */ - overArgs( - func: T, - ...transforms: Function[] - ): TResult; - - /** - * @see _.overArgs - */ - overArgs( - func: T, - transforms: Function[] - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.overArgs - */ - overArgs(...transforms: Function[]): LoDashImplicitObjectWrapper; - - /** - * @see _.overArgs - */ - overArgs(transforms: Function[]): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.overArgs - */ - overArgs(...transforms: Function[]): LoDashExplicitObjectWrapper; - - /** - * @see _.overArgs - */ - overArgs(transforms: Function[]): LoDashExplicitObjectWrapper; - } - - //_.negate - interface LoDashStatic { - /** - * Creates a function that negates the result of the predicate func. The func predicate is invoked with - * the this binding and arguments of the created function. - * - * @param predicate The predicate to negate. - * @return Returns the new function. - */ - negate(predicate: T): (...args: any[]) => boolean; - - /** - * @see _.negate - */ - negate(predicate: T): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.negate - */ - negate(): LoDashImplicitObjectWrapper<(...args: any[]) => boolean>; - - /** - * @see _.negate - */ - negate(): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.negate - */ - negate(): LoDashExplicitObjectWrapper<(...args: any[]) => boolean>; - - /** - * @see _.negate - */ - negate(): LoDashExplicitObjectWrapper; - } - - //_.once - interface LoDashStatic { - /** - * Creates a function that is restricted to invoking func once. Repeat calls to the function return the value - * of the first call. The func is invoked with the this binding and arguments of the created function. - * - * @param func The function to restrict. - * @return Returns the new restricted function. - */ - once(func: T): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.once - */ - once(): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.once - */ - once(): LoDashExplicitObjectWrapper; - } - - //_.partial - interface LoDashStatic { - /** - * Creates a function that, when called, invokes func with any additional partial arguments - * prepended to those provided to the new function. This method is similar to _.bind except - * it does not alter the this binding. - * @param func The function to partially apply arguments to. - * @param args Arguments to be partially applied. - * @return The new partially applied function. - **/ - partial: Partial; - } - - type PH = LoDashStatic; - - interface Function0 { - (): R; - } - interface Function1 { - (t1: T1): R; - } - interface Function2 { - (t1: T1, t2: T2): R; - } - interface Function3 { - (t1: T1, t2: T2, t3: T3): R; - } - interface Function4 { - (t1: T1, t2: T2, t3: T3, t4: T4): R; - } - - interface Partial { - // arity 0 - (func: Function0): Function0; - // arity 1 - (func: Function1): Function1; - (func: Function1, arg1: T1): Function0; - // arity 2 - (func: Function2): Function2; - (func: Function2, arg1: T1): Function1< T2, R>; - (func: Function2, plc1: PH, arg2: T2): Function1; - (func: Function2, arg1: T1, arg2: T2): Function0< R>; - // arity 3 - (func: Function3): Function3; - (func: Function3, arg1: T1): Function2< T2, T3, R>; - (func: Function3, plc1: PH, arg2: T2): Function2; - (func: Function3, arg1: T1, arg2: T2): Function1< T3, R>; - (func: Function3, plc1: PH, plc2: PH, arg3: T3): Function2; - (func: Function3, arg1: T1, plc2: PH, arg3: T3): Function1< T2, R>; - (func: Function3, plc1: PH, arg2: T2, arg3: T3): Function1; - (func: Function3, arg1: T1, arg2: T2, arg3: T3): Function0< R>; - // arity 4 - (func: Function4): Function4; - (func: Function4, arg1: T1): Function3< T2, T3, T4, R>; - (func: Function4, plc1: PH, arg2: T2): Function3; - (func: Function4, arg1: T1, arg2: T2): Function2< T3, T4, R>; - (func: Function4, plc1: PH, plc2: PH, arg3: T3): Function3; - (func: Function4, arg1: T1, plc2: PH, arg3: T3): Function2< T2, T4, R>; - (func: Function4, plc1: PH, arg2: T2, arg3: T3): Function2; - (func: Function4, arg1: T1, arg2: T2, arg3: T3): Function1< T4, R>; - (func: Function4, plc1: PH, plc2: PH, plc3: PH, arg4: T4): Function3; - (func: Function4, arg1: T1, plc2: PH, plc3: PH, arg4: T4): Function2< T2, T3, R>; - (func: Function4, plc1: PH, arg2: T2, plc3: PH, arg4: T4): Function2; - (func: Function4, arg1: T1, arg2: T2, plc3: PH, arg4: T4): Function1< T3, R>; - (func: Function4, plc1: PH, plc2: PH, arg3: T3, arg4: T4): Function2; - (func: Function4, arg1: T1, plc2: PH, arg3: T3, arg4: T4): Function1< T2, R>; - (func: Function4, plc1: PH, arg2: T2, arg3: T3, arg4: T4): Function1; - (func: Function4, arg1: T1, arg2: T2, arg3: T3, arg4: T4): Function0< R>; - // catch-all - (func: Function, ...args: any[]): Function; - } - - //_.partialRight - interface LoDashStatic { - /** - * This method is like _.partial except that partial arguments are appended to those provided - * to the new function. - * @param func The function to partially apply arguments to. - * @param args Arguments to be partially applied. - * @return The new partially applied function. - **/ - partialRight: PartialRight - } - - interface PartialRight { - // arity 0 - (func: Function0): Function0; - // arity 1 - (func: Function1): Function1; - (func: Function1, arg1: T1): Function0; - // arity 2 - (func: Function2): Function2; - (func: Function2, arg1: T1, plc2: PH): Function1< T2, R>; - (func: Function2, arg2: T2): Function1; - (func: Function2, arg1: T1, arg2: T2): Function0< R>; - // arity 3 - (func: Function3): Function3; - (func: Function3, arg1: T1, plc2: PH, plc3: PH): Function2< T2, T3, R>; - (func: Function3, arg2: T2, plc3: PH): Function2; - (func: Function3, arg1: T1, arg2: T2, plc3: PH): Function1< T3, R>; - (func: Function3, arg3: T3): Function2; - (func: Function3, arg1: T1, plc2: PH, arg3: T3): Function1< T2, R>; - (func: Function3, arg2: T2, arg3: T3): Function1; - (func: Function3, arg1: T1, arg2: T2, arg3: T3): Function0< R>; - // arity 4 - (func: Function4): Function4; - (func: Function4, arg1: T1, plc2: PH, plc3: PH, plc4: PH): Function3< T2, T3, T4, R>; - (func: Function4, arg2: T2, plc3: PH, plc4: PH): Function3; - (func: Function4, arg1: T1, arg2: T2, plc3: PH, plc4: PH): Function2< T3, T4, R>; - (func: Function4, arg3: T3, plc4: PH): Function3; - (func: Function4, arg1: T1, plc2: PH, arg3: T3, plc4: PH): Function2< T2, T4, R>; - (func: Function4, arg2: T2, arg3: T3, plc4: PH): Function2; - (func: Function4, arg1: T1, arg2: T2, arg3: T3, plc4: PH): Function1< T4, R>; - (func: Function4, arg4: T4): Function3; - (func: Function4, arg1: T1, plc2: PH, plc3: PH, arg4: T4): Function2< T2, T3, R>; - (func: Function4, arg2: T2, plc3: PH, arg4: T4): Function2; - (func: Function4, arg1: T1, arg2: T2, plc3: PH, arg4: T4): Function1< T3, R>; - (func: Function4, arg3: T3, arg4: T4): Function2; - (func: Function4, arg1: T1, plc2: PH, arg3: T3, arg4: T4): Function1< T2, R>; - (func: Function4, arg2: T2, arg3: T3, arg4: T4): Function1; - (func: Function4, arg1: T1, arg2: T2, arg3: T3, arg4: T4): Function0< R>; - // catch-all - (func: Function, ...args: any[]): Function; - } - - //_.rearg - interface LoDashStatic { - /** - * Creates a function that invokes func with arguments arranged according to the specified indexes where the - * argument value at the first index is provided as the first argument, the argument value at the second index - * is provided as the second argument, and so on. - * @param func The function to rearrange arguments for. - * @param indexes The arranged argument indexes, specified as individual indexes or arrays of indexes. - * @return Returns the new function. - */ - rearg(func: Function, indexes: number[]): TResult; - - /** - * @see _.rearg - */ - rearg(func: Function, ...indexes: number[]): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.rearg - */ - rearg(indexes: number[]): LoDashImplicitObjectWrapper; - - /** - * @see _.rearg - */ - rearg(...indexes: number[]): LoDashImplicitObjectWrapper; - } - - //_.rest - interface LoDashStatic { - /** - * Creates a function that invokes func with the this binding of the created function and arguments from start - * and beyond provided as an array. - * - * Note: This method is based on the rest parameter. - * - * @param func The function to apply a rest parameter to. - * @param start The start position of the rest parameter. - * @return Returns the new function. - */ - rest( - func: Function, - start?: number - ): TResult; - - /** - * @see _.rest - */ - rest( - func: TFunc, - start?: number - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.rest - */ - rest(start?: number): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.rest - */ - rest(start?: number): LoDashExplicitObjectWrapper; - } - - //_.spread - interface LoDashStatic { - /** - * Creates a function that invokes func with the this binding of the created function and an array of arguments - * much like Function#apply. - * - * Note: This method is based on the spread operator. - * - * @param func The function to spread arguments over. - * @return Returns the new function. - */ - spread(func: F): T; - - /** - * @see _.spread - */ - spread(func: Function): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.spread - */ - spread(): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.spread - */ - spread(): LoDashExplicitObjectWrapper; - } - - //_.throttle - interface ThrottleSettings { - /** - * If you'd like to disable the leading-edge call, pass this as false. - */ - leading?: boolean; - - /** - * If you'd like to disable the execution on the trailing-edge, pass false. - */ - trailing?: boolean; - } - - interface LoDashStatic { - /** - * Creates a throttled function that only invokes func at most once per every wait milliseconds. The throttled - * function comes with a cancel method to cancel delayed invocations. Provide an options object to indicate - * that func should be invoked on the leading and/or trailing edge of the wait timeout. Subsequent calls to - * the throttled function return the result of the last func call. - * - * Note: If leading and trailing options are true, func is invoked on the trailing edge of the timeout only if - * the the throttled function is invoked more than once during the wait timeout. - * - * @param func The function to throttle. - * @param wait The number of milliseconds to throttle invocations to. - * @param options The options object. - * @param options.leading Specify invoking on the leading edge of the timeout. - * @param options.trailing Specify invoking on the trailing edge of the timeout. - * @return Returns the new throttled function. - */ - throttle( - func: T, - wait?: number, - options?: ThrottleSettings - ): T & Cancelable; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.throttle - */ - throttle( - wait?: number, - options?: ThrottleSettings - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.throttle - */ - throttle( - wait?: number, - options?: ThrottleSettings - ): LoDashExplicitObjectWrapper; - } - - //_.unary - interface LoDashStatic { - /** - * Creates a function that accepts up to one argument, ignoring any - * additional arguments. - * - * @static - * @memberOf _ - * @category Function - * @param {Function} func The function to cap arguments for. - * @returns {Function} Returns the new function. - * @example - * - * _.map(['6', '8', '10'], _.unary(parseInt)); - * // => [6, 8, 10] - */ - unary(func: T): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.unary - */ - unary(): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.unary - */ - unary(): LoDashExplicitObjectWrapper; - } - - //_.wrap - interface LoDashStatic { - /** - * Creates a function that provides value to the wrapper function as its first argument. Any additional - * arguments provided to the function are appended to those provided to the wrapper function. The wrapper is - * invoked with the this binding of the created function. - * - * @param value The value to wrap. - * @param wrapper The wrapper function. - * @return Returns the new function. - */ - wrap( - value: V, - wrapper: W - ): R; - - /** - * @see _.wrap - */ - wrap( - value: V, - wrapper: Function - ): R; - - /** - * @see _.wrap - */ - wrap( - value: any, - wrapper: Function - ): R; - } - - interface LoDashImplicitWrapper { - /** - * @see _.wrap - */ - wrap(wrapper: W): LoDashImplicitObjectWrapper; - - /** - * @see _.wrap - */ - wrap(wrapper: Function): LoDashImplicitObjectWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.wrap - */ - wrap(wrapper: W): LoDashImplicitObjectWrapper; - - /** - * @see _.wrap - */ - wrap(wrapper: Function): LoDashImplicitObjectWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.wrap - */ - wrap(wrapper: W): LoDashImplicitObjectWrapper; - - /** - * @see _.wrap - */ - wrap(wrapper: Function): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.wrap - */ - wrap(wrapper: W): LoDashExplicitObjectWrapper; - - /** - * @see _.wrap - */ - wrap(wrapper: Function): LoDashExplicitObjectWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.wrap - */ - wrap(wrapper: W): LoDashExplicitObjectWrapper; - - /** - * @see _.wrap - */ - wrap(wrapper: Function): LoDashExplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.wrap - */ - wrap(wrapper: W): LoDashExplicitObjectWrapper; - - /** - * @see _.wrap - */ - wrap(wrapper: Function): LoDashExplicitObjectWrapper; - } - - /******** - * Lang * - ********/ - - //_.castArray - interface LoDashStatic { - /** - * Casts value as an array if it’s not one. - * - * @param value The value to inspect. - * @return Returns the cast array. - */ - castArray(value: T): T[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.castArray - */ - castArray(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.castArray - */ - castArray(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.castArray - */ - castArray(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.castArray - */ - castArray(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.castArray - */ - castArray(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.castArray - */ - castArray(): LoDashExplicitArrayWrapper; - } - - //_.clone - interface LoDashStatic { - /** - * Creates a shallow clone of value. - * - * Note: This method is loosely based on the structured clone algorithm and supports cloning arrays, - * array buffers, booleans, date objects, maps, numbers, Object objects, regexes, sets, strings, symbols, - * and typed arrays. The own enumerable properties of arguments objects are cloned as plain objects. An empty - * object is returned for uncloneable values such as error objects, functions, DOM nodes, and WeakMaps. - * - * @param value The value to clone. - * @return Returns the cloned value. - */ - clone(value: T): T; - } - - interface LoDashImplicitWrapper { - /** - * @see _.clone - */ - clone(): T; - } - - interface LoDashImplicitArrayWrapper { - - /** - * @see _.clone - */ - clone(): T[]; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.clone - */ - clone(): T; - } - - interface LoDashExplicitWrapper { - /** - * @see _.clone - */ - clone(): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - - /** - * @see _.clone - */ - clone(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.clone - */ - clone(): LoDashExplicitObjectWrapper; - } - - //_.cloneDeep - interface LoDashStatic { - /** - * This method is like _.clone except that it recursively clones value. - * - * @param value The value to recursively clone. - * @return Returns the deep cloned value. - */ - cloneDeep(value: T): T; - } - - interface LoDashImplicitWrapper { - /** - * @see _.cloneDeep - */ - cloneDeep(): T; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.cloneDeep - */ - cloneDeep(): T[]; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.cloneDeep - */ - cloneDeep(): T; - } - - interface LoDashExplicitWrapper { - /** - * @see _.cloneDeep - */ - cloneDeep(): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.cloneDeep - */ - cloneDeep(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.cloneDeep - */ - cloneDeep(): LoDashExplicitObjectWrapper; - } - - //_.cloneDeepWith - interface CloneDeepWithCustomizer { - (value: TValue): TResult; - } - - interface LoDashStatic { - /** - * This method is like _.cloneWith except that it recursively clones value. - * - * @param value The value to recursively clone. - * @param customizer The function to customize cloning. - * @return Returns the deep cloned value. - */ - cloneDeepWith( - value: any, - customizer?: CloneDeepWithCustomizer - ): TResult; - - /** - * @see _.clonDeepeWith - */ - cloneDeepWith( - value: T, - customizer?: CloneDeepWithCustomizer - ): TResult; - } - - interface LoDashImplicitWrapper { - /** - * @see _.cloneDeepWith - */ - cloneDeepWith( - customizer?: CloneDeepWithCustomizer - ): TResult; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.cloneDeepWith - */ - cloneDeepWith( - customizer?: CloneDeepWithCustomizer - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.cloneDeepWith - */ - cloneDeepWith( - customizer?: CloneDeepWithCustomizer - ): TResult; - } - - interface LoDashExplicitWrapper { - /** - * @see _.cloneDeepWith - */ - cloneDeepWith( - customizer?: CloneDeepWithCustomizer - ): LoDashExplicitWrapper; - - /** - * @see _.cloneDeepWith - */ - cloneDeepWith( - customizer?: CloneDeepWithCustomizer - ): LoDashExplicitArrayWrapper; - - /** - * @see _.cloneDeepWith - */ - cloneDeepWith( - customizer?: CloneDeepWithCustomizer - ): LoDashExplicitObjectWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.cloneDeepWith - */ - cloneDeepWith( - customizer?: CloneDeepWithCustomizer - ): LoDashExplicitWrapper; - - /** - * @see _.cloneDeepWith - */ - cloneDeepWith( - customizer?: CloneDeepWithCustomizer - ): LoDashExplicitArrayWrapper; - - /** - * @see _.cloneDeepWith - */ - cloneDeepWith( - customizer?: CloneDeepWithCustomizer - ): LoDashExplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.cloneDeepWith - */ - cloneDeepWith( - customizer?: CloneDeepWithCustomizer - ): LoDashExplicitWrapper; - - /** - * @see _.cloneDeepWith - */ - cloneDeepWith( - customizer?: CloneDeepWithCustomizer - ): LoDashExplicitArrayWrapper; - - /** - * @see _.cloneDeepWith - */ - cloneDeepWith( - customizer?: CloneDeepWithCustomizer - ): LoDashExplicitObjectWrapper; - } - - //_.cloneWith - interface CloneWithCustomizer { - (value: TValue): TResult; - } - - interface LoDashStatic { - /** - * This method is like _.clone except that it accepts customizer which is invoked to produce the cloned value. - * If customizer returns undefined cloning is handled by the method instead. - * - * @param value The value to clone. - * @param customizer The function to customize cloning. - * @return Returns the cloned value. - */ - cloneWith( - value: any, - customizer?: CloneWithCustomizer - ): TResult; - - /** - * @see _.cloneWith - */ - cloneWith( - value: T, - customizer?: CloneWithCustomizer - ): TResult; - } - - interface LoDashImplicitWrapper { - /** - * @see _.cloneWith - */ - cloneWith( - customizer?: CloneWithCustomizer - ): TResult; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.cloneWith - */ - cloneWith( - customizer?: CloneWithCustomizer - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.cloneWith - */ - cloneWith( - customizer?: CloneWithCustomizer - ): TResult; - } - - interface LoDashExplicitWrapper { - /** - * @see _.cloneWith - */ - cloneWith( - customizer?: CloneWithCustomizer - ): LoDashExplicitWrapper; - - /** - * @see _.cloneWith - */ - cloneWith( - customizer?: CloneWithCustomizer - ): LoDashExplicitArrayWrapper; - - /** - * @see _.cloneWith - */ - cloneWith( - customizer?: CloneWithCustomizer - ): LoDashExplicitObjectWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.cloneWith - */ - cloneWith( - customizer?: CloneWithCustomizer - ): LoDashExplicitWrapper; - - /** - * @see _.cloneWith - */ - cloneWith( - customizer?: CloneWithCustomizer - ): LoDashExplicitArrayWrapper; - - /** - * @see _.cloneWith - */ - cloneWith( - customizer?: CloneWithCustomizer - ): LoDashExplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.cloneWith - */ - cloneWith( - customizer?: CloneWithCustomizer - ): LoDashExplicitWrapper; - - /** - * @see _.cloneWith - */ - cloneWith( - customizer?: CloneWithCustomizer - ): LoDashExplicitArrayWrapper; - - /** - * @see _.cloneWith - */ - cloneWith( - customizer?: CloneWithCustomizer - ): LoDashExplicitObjectWrapper; - } - - //_.eq - interface LoDashStatic { - /** - * Performs a [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) - * comparison between two values to determine if they are equivalent. - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {boolean} Returns `true` if the values are equivalent, else `false`. - * @example - * - * var object = { 'user': 'fred' }; - * var other = { 'user': 'fred' }; - * - * _.eq(object, object); - * // => true - * - * _.eq(object, other); - * // => false - * - * _.eq('a', 'a'); - * // => true - * - * _.eq('a', Object('a')); - * // => false - * - * _.eq(NaN, NaN); - * // => true - */ - eq( - value: any, - other: any - ): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isEqual - */ - eq( - other: any - ): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isEqual - */ - eq( - other: any - ): LoDashExplicitWrapper; - } - - //_.gt - interface LoDashStatic { - /** - * Checks if value is greater than other. - * - * @param value The value to compare. - * @param other The other value to compare. - * @return Returns true if value is greater than other, else false. - */ - gt( - value: any, - other: any - ): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.gt - */ - gt(other: any): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.gt - */ - gt(other: any): LoDashExplicitWrapper; - } - - //_.gte - interface LoDashStatic { - /** - * Checks if value is greater than or equal to other. - * - * @param value The value to compare. - * @param other The other value to compare. - * @return Returns true if value is greater than or equal to other, else false. - */ - gte( - value: any, - other: any - ): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.gte - */ - gte(other: any): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.gte - */ - gte(other: any): LoDashExplicitWrapper; - } - - //_.isArguments - interface LoDashStatic { - /** - * Checks if value is classified as an arguments object. - * - * @param value The value to check. - * @return Returns true if value is correctly classified, else false. - */ - isArguments(value?: any): value is IArguments; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isArguments - */ - isArguments(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isArguments - */ - isArguments(): LoDashExplicitWrapper; - } - - //_.isArray - interface LoDashStatic { - /** - * Checks if value is classified as an Array object. - * @param value The value to check. - * - * @return Returns true if value is correctly classified, else false. - */ - isArray(value?: any): value is T[]; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isArray - */ - isArray(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isArray - */ - isArray(): LoDashExplicitWrapper; - } - - //_.isArrayBuffer - interface LoDashStatic { - /** - * Checks if value is classified as an ArrayBuffer object. - * - * @param value The value to check. - * @return Returns true if value is correctly classified, else false. - */ - isArrayBuffer(value?: any): value is ArrayBuffer; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isArrayBuffer - */ - isArrayBuffer(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isArrayBuffer - */ - isArrayBuffer(): LoDashExplicitWrapper; - } - - //_.isArrayLike - interface LoDashStatic { - /** - * Checks if `value` is array-like. A value is considered array-like if it's - * not a function and has a `value.length` that's an integer greater than or - * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`. - * - * @static - * @memberOf _ - * @type Function - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is array-like, else `false`. - * @example - * - * _.isArrayLike([1, 2, 3]); - * // => true - * - * _.isArrayLike(document.body.children); - * // => true - * - * _.isArrayLike('abc'); - * // => true - * - * _.isArrayLike(_.noop); - * // => false - */ - isArrayLike(value?: any): value is T[]; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isArrayLike - */ - isArrayLike(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isArrayLike - */ - isArrayLike(): LoDashExplicitWrapper; - } - - //_.isArrayLikeObject - interface LoDashStatic { - /** - * This method is like `_.isArrayLike` except that it also checks if `value` - * is an object. - * - * @static - * @memberOf _ - * @type Function - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an array-like object, else `false`. - * @example - * - * _.isArrayLikeObject([1, 2, 3]); - * // => true - * - * _.isArrayLikeObject(document.body.children); - * // => true - * - * _.isArrayLikeObject('abc'); - * // => false - * - * _.isArrayLikeObject(_.noop); - * // => false - */ - isArrayLikeObject(value?: any): value is T[]; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isArrayLikeObject - */ - isArrayLikeObject(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isArrayLikeObject - */ - isArrayLikeObject(): LoDashExplicitWrapper; - } - - //_.isBoolean - interface LoDashStatic { - /** - * Checks if value is classified as a boolean primitive or object. - * - * @param value The value to check. - * @return Returns true if value is correctly classified, else false. - */ - isBoolean(value?: any): value is boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isBoolean - */ - isBoolean(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isBoolean - */ - isBoolean(): LoDashExplicitWrapper; - } - - //_.isBuffer - interface LoDashStatic { - /** - * Checks if value is a buffer. - * - * @param value The value to check. - * @return Returns true if value is a buffer, else false. - */ - isBuffer(value?: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isBuffer - */ - isBuffer(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isBuffer - */ - isBuffer(): LoDashExplicitWrapper; - } - - //_.isDate - interface LoDashStatic { - /** - * Checks if value is classified as a Date object. - * @param value The value to check. - * - * @return Returns true if value is correctly classified, else false. - */ - isDate(value?: any): value is Date; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isDate - */ - isDate(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isDate - */ - isDate(): LoDashExplicitWrapper; - } - - //_.isElement - interface LoDashStatic { - /** - * Checks if value is a DOM element. - * - * @param value The value to check. - * @return Returns true if value is a DOM element, else false. - */ - isElement(value?: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isElement - */ - isElement(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isElement - */ - isElement(): LoDashExplicitWrapper; - } - - //_.isEmpty - interface LoDashStatic { - /** - * Checks if value is empty. A value is considered empty unless it’s an arguments object, array, string, or - * jQuery-like collection with a length greater than 0 or an object with own enumerable properties. - * - * @param value The value to inspect. - * @return Returns true if value is empty, else false. - */ - isEmpty(value?: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isEmpty - */ - isEmpty(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isEmpty - */ - isEmpty(): LoDashExplicitWrapper; - } - - //_.isEqual - interface LoDashStatic { - /** - * Performs a deep comparison between two values to determine if they are - * equivalent. - * - * **Note:** This method supports comparing arrays, array buffers, booleans, - * date objects, error objects, maps, numbers, `Object` objects, regexes, - * sets, strings, symbols, and typed arrays. `Object` objects are compared - * by their own, not inherited, enumerable properties. Functions and DOM - * nodes are **not** supported. - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @returns {boolean} Returns `true` if the values are equivalent, else `false`. - * @example - * - * var object = { 'user': 'fred' }; - * var other = { 'user': 'fred' }; - * - * _.isEqual(object, other); - * // => true - * - * object === other; - * // => false - */ - isEqual( - value: any, - other: any - ): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isEqual - */ - isEqual( - other: any - ): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isEqual - */ - isEqual( - other: any - ): LoDashExplicitWrapper; - } - - // _.isEqualWith - interface IsEqualCustomizer { - (value: any, other: any, indexOrKey?: number|string): boolean; - } - - interface LoDashStatic { - /** - * This method is like `_.isEqual` except that it accepts `customizer` which is - * invoked to compare values. If `customizer` returns `undefined` comparisons are - * handled by the method instead. The `customizer` is invoked with up to seven arguments: - * (objValue, othValue [, index|key, object, other, stack]). - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to compare. - * @param {*} other The other value to compare. - * @param {Function} [customizer] The function to customize comparisons. - * @returns {boolean} Returns `true` if the values are equivalent, else `false`. - * @example - * - * function isGreeting(value) { - * return /^h(?:i|ello)$/.test(value); - * } - * - * function customizer(objValue, othValue) { - * if (isGreeting(objValue) && isGreeting(othValue)) { - * return true; - * } - * } - * - * var array = ['hello', 'goodbye']; - * var other = ['hi', 'goodbye']; - * - * _.isEqualWith(array, other, customizer); - * // => true - */ - isEqualWith( - value: any, - other: any, - customizer: IsEqualCustomizer - ): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isEqualWith - */ - isEqualWith( - other: any, - customizer: IsEqualCustomizer - ): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isEqualWith - */ - isEqualWith( - other: any, - customizer: IsEqualCustomizer - ): LoDashExplicitWrapper; - } - - //_.isError - interface LoDashStatic { - /** - * Checks if value is an Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, or URIError - * object. - * - * @param value The value to check. - * @return Returns true if value is an error object, else false. - */ - isError(value: any): value is Error; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isError - */ - isError(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isError - */ - isError(): LoDashExplicitWrapper; - } - - //_.isFinite - interface LoDashStatic { - /** - * Checks if value is a finite primitive number. - * - * Note: This method is based on Number.isFinite. - * - * @param value The value to check. - * @return Returns true if value is a finite number, else false. - */ - isFinite(value?: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isFinite - */ - isFinite(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isFinite - */ - isFinite(): LoDashExplicitWrapper; - } - - //_.isFunction - interface LoDashStatic { - /** - * Checks if value is classified as a Function object. - * - * @param value The value to check. - * @return Returns true if value is correctly classified, else false. - */ - isFunction(value?: any): value is Function; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isFunction - */ - isFunction(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isFunction - */ - isFunction(): LoDashExplicitWrapper; - } - - //_.isInteger - interface LoDashStatic { - /** - * Checks if `value` is an integer. - * - * **Note:** This method is based on [`Number.isInteger`](https://mdn.io/Number/isInteger). - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an integer, else `false`. - * @example - * - * _.isInteger(3); - * // => true - * - * _.isInteger(Number.MIN_VALUE); - * // => false - * - * _.isInteger(Infinity); - * // => false - * - * _.isInteger('3'); - * // => false - */ - isInteger(value?: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isInteger - */ - isInteger(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isInteger - */ - isInteger(): LoDashExplicitWrapper; - } - - //_.isLength - interface LoDashStatic { - /** - * Checks if `value` is a valid array-like length. - * - * **Note:** This function is loosely based on [`ToLength`](http://ecma-international.org/ecma-262/6.0/#sec-tolength). - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a valid length, else `false`. - * @example - * - * _.isLength(3); - * // => true - * - * _.isLength(Number.MIN_VALUE); - * // => false - * - * _.isLength(Infinity); - * // => false - * - * _.isLength('3'); - * // => false - */ - isLength(value?: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isLength - */ - isLength(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isLength - */ - isLength(): LoDashExplicitWrapper; - } - - //_.isMap - interface LoDashStatic { - /** - * Checks if value is classified as a Map object. - * - * @param value The value to check. - * @returns Returns true if value is correctly classified, else false. - */ - isMap(value?: any): value is Map; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isMap - */ - isMap(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isMap - */ - isMap(): LoDashExplicitWrapper; - } - - //_.isMatch - interface isMatchCustomizer { - (value: any, other: any, indexOrKey?: number|string): boolean; - } - - interface LoDashStatic { - /** - * Performs a deep comparison between `object` and `source` to determine if - * `object` contains equivalent property values. - * - * **Note:** This method supports comparing the same values as `_.isEqual`. - * - * @static - * @memberOf _ - * @category Lang - * @param {Object} object The object to inspect. - * @param {Object} source The object of property values to match. - * @returns {boolean} Returns `true` if `object` is a match, else `false`. - * @example - * - * var object = { 'user': 'fred', 'age': 40 }; - * - * _.isMatch(object, { 'age': 40 }); - * // => true - * - * _.isMatch(object, { 'age': 36 }); - * // => false - */ - isMatch(object: Object, source: Object): boolean; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.isMatch - */ - isMatch(source: Object): boolean; - } - - //_.isMatchWith - interface isMatchWithCustomizer { - (value: any, other: any, indexOrKey?: number|string): boolean; - } - - interface LoDashStatic { - /** - * This method is like `_.isMatch` except that it accepts `customizer` which - * is invoked to compare values. If `customizer` returns `undefined` comparisons - * are handled by the method instead. The `customizer` is invoked with three - * arguments: (objValue, srcValue, index|key, object, source). - * - * @static - * @memberOf _ - * @category Lang - * @param {Object} object The object to inspect. - * @param {Object} source The object of property values to match. - * @param {Function} [customizer] The function to customize comparisons. - * @returns {boolean} Returns `true` if `object` is a match, else `false`. - * @example - * - * function isGreeting(value) { - * return /^h(?:i|ello)$/.test(value); - * } - * - * function customizer(objValue, srcValue) { - * if (isGreeting(objValue) && isGreeting(srcValue)) { - * return true; - * } - * } - * - * var object = { 'greeting': 'hello' }; - * var source = { 'greeting': 'hi' }; - * - * _.isMatchWith(object, source, customizer); - * // => true - */ - isMatchWith(object: Object, source: Object, customizer: isMatchWithCustomizer): boolean; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.isMatchWith - */ - isMatchWith(source: Object, customizer: isMatchWithCustomizer): boolean; - } - - //_.isNaN - interface LoDashStatic { - /** - * Checks if value is NaN. - * - * Note: This method is not the same as isNaN which returns true for undefined and other non-numeric values. - * - * @param value The value to check. - * @return Returns true if value is NaN, else false. - */ - isNaN(value?: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isNaN - */ - isNaN(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isNaN - */ - isNaN(): LoDashExplicitWrapper; - } - - //_.isNative - interface LoDashStatic { - /** - * Checks if value is a native function. - * @param value The value to check. - * - * @retrun Returns true if value is a native function, else false. - */ - isNative(value: any): value is Function; - } - - interface LoDashImplicitWrapperBase { - /** - * see _.isNative - */ - isNative(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * see _.isNative - */ - isNative(): LoDashExplicitWrapper; - } - - //_.isNil - interface LoDashStatic { - /** - * Checks if `value` is `null` or `undefined`. - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is nullish, else `false`. - * @example - * - * _.isNil(null); - * // => true - * - * _.isNil(void 0); - * // => true - * - * _.isNil(NaN); - * // => false - */ - isNil(value?: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * see _.isNil - */ - isNil(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * see _.isNil - */ - isNil(): LoDashExplicitWrapper; - } - - //_.isNull - interface LoDashStatic { - /** - * Checks if value is null. - * - * @param value The value to check. - * @return Returns true if value is null, else false. - */ - isNull(value?: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * see _.isNull - */ - isNull(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * see _.isNull - */ - isNull(): LoDashExplicitWrapper; - } - - //_.isNumber - interface LoDashStatic { - /** - * Checks if value is classified as a Number primitive or object. - * - * Note: To exclude Infinity, -Infinity, and NaN, which are classified as numbers, use the _.isFinite method. - * - * @param value The value to check. - * @return Returns true if value is correctly classified, else false. - */ - isNumber(value?: any): value is number; - } - - interface LoDashImplicitWrapperBase { - /** - * see _.isNumber - */ - isNumber(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * see _.isNumber - */ - isNumber(): LoDashExplicitWrapper; - } - - //_.isObject - interface LoDashStatic { - /** - * Checks if value is the language type of Object. (e.g. arrays, functions, objects, regexes, new Number(0), - * and new String('')) - * - * @param value The value to check. - * @return Returns true if value is an object, else false. - */ - isObject(value?: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * see _.isObject - */ - isObject(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * see _.isObject - */ - isObject(): LoDashExplicitWrapper; - } - - //_.isObjectLike - interface LoDashStatic { - /** - * Checks if `value` is object-like. A value is object-like if it's not `null` - * and has a `typeof` result of "object". - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is object-like, else `false`. - * @example - * - * _.isObjectLike({}); - * // => true - * - * _.isObjectLike([1, 2, 3]); - * // => true - * - * _.isObjectLike(_.noop); - * // => false - * - * _.isObjectLike(null); - * // => false - */ - isObjectLike(value?: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * see _.isObjectLike - */ - isObjectLike(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * see _.isObjectLike - */ - isObjectLike(): LoDashExplicitWrapper; - } - - //_.isPlainObject - interface LoDashStatic { - /** - * Checks if value is a plain object, that is, an object created by the Object constructor or one with a - * [[Prototype]] of null. - * - * Note: This method assumes objects created by the Object constructor have no inherited enumerable properties. - * - * @param value The value to check. - * @return Returns true if value is a plain object, else false. - */ - isPlainObject(value?: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * see _.isPlainObject - */ - isPlainObject(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * see _.isPlainObject - */ - isPlainObject(): LoDashExplicitWrapper; - } - - //_.isRegExp - interface LoDashStatic { - /** - * Checks if value is classified as a RegExp object. - * @param value The value to check. - * - * @return Returns true if value is correctly classified, else false. - */ - isRegExp(value?: any): value is RegExp; - } - - interface LoDashImplicitWrapperBase { - /** - * see _.isRegExp - */ - isRegExp(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * see _.isRegExp - */ - isRegExp(): LoDashExplicitWrapper; - } - - //_.isSafeInteger - interface LoDashStatic { - /** - * Checks if `value` is a safe integer. An integer is safe if it's an IEEE-754 - * double precision number which isn't the result of a rounded unsafe integer. - * - * **Note:** This method is based on [`Number.isSafeInteger`](https://mdn.io/Number/isSafeInteger). - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is a safe integer, else `false`. - * @example - * - * _.isSafeInteger(3); - * // => true - * - * _.isSafeInteger(Number.MIN_VALUE); - * // => false - * - * _.isSafeInteger(Infinity); - * // => false - * - * _.isSafeInteger('3'); - * // => false - */ - isSafeInteger(value: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * see _.isSafeInteger - */ - isSafeInteger(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * see _.isSafeInteger - */ - isSafeInteger(): LoDashExplicitWrapper; - } - - //_.isSet - interface LoDashStatic { - /** - * Checks if value is classified as a Set object. - * - * @param value The value to check. - * @returns Returns true if value is correctly classified, else false. - */ - isSet(value?: any): value is Set; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isSet - */ - isSet(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isSet - */ - isSet(): LoDashExplicitWrapper; - } - - //_.isString - interface LoDashStatic { - /** - * Checks if value is classified as a String primitive or object. - * - * @param value The value to check. - * @return Returns true if value is correctly classified, else false. - */ - isString(value?: any): value is string; - } - - interface LoDashImplicitWrapperBase { - /** - * see _.isString - */ - isString(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * see _.isString - */ - isString(): LoDashExplicitWrapper; - } - - //_.isSymbol - interface LoDashStatic { - /** - * Checks if `value` is classified as a `Symbol` primitive or object. - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`. - * @example - * - * _.isSymbol(Symbol.iterator); - * // => true - * - * _.isSymbol('abc'); - * // => false - */ - isSymbol(value: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * see _.isSymbol - */ - isSymbol(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * see _.isSymbol - */ - isSymbol(): LoDashExplicitWrapper; - } - - //_.isTypedArray - interface LoDashStatic { - /** - * Checks if value is classified as a typed array. - * - * @param value The value to check. - * @return Returns true if value is correctly classified, else false. - */ - isTypedArray(value: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * see _.isTypedArray - */ - isTypedArray(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * see _.isTypedArray - */ - isTypedArray(): LoDashExplicitWrapper; - } - - //_.isUndefined - interface LoDashStatic { - /** - * Checks if value is undefined. - * - * @param value The value to check. - * @return Returns true if value is undefined, else false. - */ - isUndefined(value: any): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * see _.isUndefined - */ - isUndefined(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * see _.isUndefined - */ - isUndefined(): LoDashExplicitWrapper; - } - - //_.isWeakMap - interface LoDashStatic { - /** - * Checks if value is classified as a WeakMap object. - * - * @param value The value to check. - * @returns Returns true if value is correctly classified, else false. - */ - isWeakMap(value?: any): value is WeakMap; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isSet - */ - isWeakMap(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isSet - */ - isWeakMap(): LoDashExplicitWrapper; - } - - //_.isWeakSet - interface LoDashStatic { - /** - * Checks if value is classified as a WeakSet object. - * - * @param value The value to check. - * @returns Returns true if value is correctly classified, else false. - */ - isWeakSet(value?: any): value is WeakSet; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.isWeakSet - */ - isWeakSet(): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.isWeakSet - */ - isWeakSet(): LoDashExplicitWrapper; - } - - //_.lt - interface LoDashStatic { - /** - * Checks if value is less than other. - * - * @param value The value to compare. - * @param other The other value to compare. - * @return Returns true if value is less than other, else false. - */ - lt( - value: any, - other: any - ): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.lt - */ - lt(other: any): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.lt - */ - lt(other: any): LoDashExplicitWrapper; - } - - //_.lte - interface LoDashStatic { - /** - * Checks if value is less than or equal to other. - * - * @param value The value to compare. - * @param other The other value to compare. - * @return Returns true if value is less than or equal to other, else false. - */ - lte( - value: any, - other: any - ): boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.lte - */ - lte(other: any): boolean; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.lte - */ - lte(other: any): LoDashExplicitWrapper; - } - - //_.toArray - interface LoDashStatic { - /** - * Converts value to an array. - * - * @param value The value to convert. - * @return Returns the converted array. - */ - toArray(value: List|Dictionary|NumericDictionary): T[]; - - /** - * @see _.toArray - */ - toArray(value: TValue): TResult[]; - - /** - * @see _.toArray - */ - toArray(value?: any): TResult[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.toArray - */ - toArray(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.toArray - */ - toArray(): LoDashImplicitArrayWrapper; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.toArray - */ - toArray(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.toArray - */ - toArray(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.toArray - */ - toArray(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.toArray - */ - toArray(): LoDashExplicitArrayWrapper; - } - - //_.toPlainObject - interface LoDashStatic { - /** - * Converts value to a plain object flattening inherited enumerable properties of value to own properties - * of the plain object. - * - * @param value The value to convert. - * @return Returns the converted plain object. - */ - toPlainObject(value?: any): TResult; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.toPlainObject - */ - toPlainObject(): LoDashImplicitObjectWrapper; - } - - //_.toInteger - interface LoDashStatic { - /** - * Converts `value` to an integer. - * - * **Note:** This function is loosely based on [`ToInteger`](http://www.ecma-international.org/ecma-262/6.0/#sec-tointeger). - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to convert. - * @returns {number} Returns the converted integer. - * @example - * - * _.toInteger(3); - * // => 3 - * - * _.toInteger(Number.MIN_VALUE); - * // => 0 - * - * _.toInteger(Infinity); - * // => 1.7976931348623157e+308 - * - * _.toInteger('3'); - * // => 3 - */ - toInteger(value: any): number; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.toInteger - */ - toInteger(): LoDashImplicitWrapper; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.toInteger - */ - toInteger(): LoDashExplicitWrapper; - } - - //_.toLength - interface LoDashStatic { - /** - * Converts `value` to an integer suitable for use as the length of an - * array-like object. - * - * **Note:** This method is based on [`ToLength`](http://ecma-international.org/ecma-262/6.0/#sec-tolength). - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to convert. - * @return {number} Returns the converted integer. - * @example - * - * _.toLength(3); - * // => 3 - * - * _.toLength(Number.MIN_VALUE); - * // => 0 - * - * _.toLength(Infinity); - * // => 4294967295 - * - * _.toLength('3'); - * // => 3 - */ - toLength(value: any): number; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.toLength - */ - toLength(): LoDashImplicitWrapper; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.toLength - */ - toLength(): LoDashExplicitWrapper; - } - - //_.toNumber - interface LoDashStatic { - /** - * Converts `value` to a number. - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to process. - * @returns {number} Returns the number. - * @example - * - * _.toNumber(3); - * // => 3 - * - * _.toNumber(Number.MIN_VALUE); - * // => 5e-324 - * - * _.toNumber(Infinity); - * // => Infinity - * - * _.toNumber('3'); - * // => 3 - */ - toNumber(value: any): number; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.toNumber - */ - toNumber(): LoDashImplicitWrapper; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.toNumber - */ - toNumber(): LoDashExplicitWrapper; - } - - //_.toSafeInteger - interface LoDashStatic { - /** - * Converts `value` to a safe integer. A safe integer can be compared and - * represented correctly. - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to convert. - * @returns {number} Returns the converted integer. - * @example - * - * _.toSafeInteger(3); - * // => 3 - * - * _.toSafeInteger(Number.MIN_VALUE); - * // => 0 - * - * _.toSafeInteger(Infinity); - * // => 9007199254740991 - * - * _.toSafeInteger('3'); - * // => 3 - */ - toSafeInteger(value: any): number; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.toSafeInteger - */ - toSafeInteger(): LoDashImplicitWrapper; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.toSafeInteger - */ - toSafeInteger(): LoDashExplicitWrapper; - } - - //_.toString DUMMY - interface LoDashStatic { - /** - * Converts `value` to a string if it's not one. An empty string is returned - * for `null` and `undefined` values. The sign of `-0` is preserved. - * - * @static - * @memberOf _ - * @category Lang - * @param {*} value The value to process. - * @returns {string} Returns the string. - * @example - * - * _.toString(null); - * // => '' - * - * _.toString(-0); - * // => '-0' - * - * _.toString([1, 2, 3]); - * // => '1,2,3' - */ - toString(value: any): string; - } - - /******** - * Math * - ********/ - - //_.add - interface LoDashStatic { - /** - * Adds two numbers. - * - * @param augend The first number to add. - * @param addend The second number to add. - * @return Returns the sum. - */ - add( - augend: number, - addend: number - ): number; - } - - interface LoDashImplicitWrapper { - /** - * @see _.add - */ - add(addend: number): number; - } - - interface LoDashExplicitWrapper { - /** - * @see _.add - */ - add(addend: number): LoDashExplicitWrapper; - } - - //_.ceil - interface LoDashStatic { - /** - * Calculates n rounded up to precision. - * - * @param n The number to round up. - * @param precision The precision to round up to. - * @return Returns the rounded up number. - */ - ceil( - n: number, - precision?: number - ): number; - } - - interface LoDashImplicitWrapper { - /** - * @see _.ceil - */ - ceil(precision?: number): number; - } - - interface LoDashExplicitWrapper { - /** - * @see _.ceil - */ - ceil(precision?: number): LoDashExplicitWrapper; - } - - //_.floor - interface LoDashStatic { - /** - * Calculates n rounded down to precision. - * - * @param n The number to round down. - * @param precision The precision to round down to. - * @return Returns the rounded down number. - */ - floor( - n: number, - precision?: number - ): number; - } - - interface LoDashImplicitWrapper { - /** - * @see _.floor - */ - floor(precision?: number): number; - } - - interface LoDashExplicitWrapper { - /** - * @see _.floor - */ - floor(precision?: number): LoDashExplicitWrapper; - } - - //_.max - interface LoDashStatic { - /** - * Computes the maximum value of `array`. If `array` is empty or falsey - * `undefined` is returned. - * - * @static - * @memberOf _ - * @category Math - * @param {Array} array The array to iterate over. - * @returns {*} Returns the maximum value. - */ - max( - collection: List - ): T; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.max - */ - max(): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.max - */ - max(): T; - } - - //_.maxBy - interface LoDashStatic { - /** - * This method is like `_.max` except that it accepts `iteratee` which is - * invoked for each element in `array` to generate the criterion by which - * the value is ranked. The iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @category Math - * @param {Array} array The array to iterate over. - * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. - * @returns {*} Returns the maximum value. - * @example - * - * var objects = [{ 'n': 1 }, { 'n': 2 }]; - * - * _.maxBy(objects, function(o) { return o.a; }); - * // => { 'n': 2 } - * - * // using the `_.property` iteratee shorthand - * _.maxBy(objects, 'n'); - * // => { 'n': 2 } - */ - maxBy( - collection: List, - iteratee?: ListIterator - ): T; - - /** - * @see _.maxBy - */ - maxBy( - collection: Dictionary, - iteratee?: DictionaryIterator - ): T; - - /** - * @see _.maxBy - */ - maxBy( - collection: List|Dictionary, - iteratee?: string - ): T; - - /** - * @see _.maxBy - */ - maxBy( - collection: List|Dictionary, - whereValue?: TObject - ): T; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.maxBy - */ - maxBy( - iteratee?: ListIterator - ): T; - - /** - * @see _.maxBy - */ - maxBy( - iteratee?: string - ): T; - - /** - * @see _.maxBy - */ - maxBy( - whereValue?: TObject - ): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.maxBy - */ - maxBy( - iteratee?: ListIterator|DictionaryIterator - ): T; - - /** - * @see _.maxBy - */ - maxBy( - iteratee?: string - ): T; - - /** - * @see _.maxBy - */ - maxBy( - whereValue?: TObject - ): T; - } - - //_.mean - interface LoDashStatic { - /** - * Computes the mean of the values in `array`. - * - * @static - * @memberOf _ - * @category Math - * @param {Array} array The array to iterate over. - * @returns {number} Returns the mean. - * @example - * - * _.mean([4, 2, 8, 6]); - * // => 5 - */ - mean( - collection: List - ): number; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.mean - */ - mean(): number; - - /** - * @see _.mean - */ - mean(): number; - } - - //_.min - interface LoDashStatic { - /** - * Computes the minimum value of `array`. If `array` is empty or falsey - * `undefined` is returned. - * - * @static - * @memberOf _ - * @category Math - * @param {Array} array The array to iterate over. - * @returns {*} Returns the minimum value. - */ - min( - collection: List - ): T; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.min - */ - min(): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.min - */ - min(): T; - } - - //_.minBy - interface LoDashStatic { - /** - * This method is like `_.min` except that it accepts `iteratee` which is - * invoked for each element in `array` to generate the criterion by which - * the value is ranked. The iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @category Math - * @param {Array} array The array to iterate over. - * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. - * @returns {*} Returns the minimum value. - * @example - * - * var objects = [{ 'n': 1 }, { 'n': 2 }]; - * - * _.minBy(objects, function(o) { return o.a; }); - * // => { 'n': 1 } - * - * // using the `_.property` iteratee shorthand - * _.minBy(objects, 'n'); - * // => { 'n': 1 } - */ - minBy( - collection: List, - iteratee?: ListIterator - ): T; - - /** - * @see _.minBy - */ - minBy( - collection: Dictionary, - iteratee?: DictionaryIterator - ): T; - - /** - * @see _.minBy - */ - minBy( - collection: List|Dictionary, - iteratee?: string - ): T; - - /** - * @see _.minBy - */ - minBy( - collection: List|Dictionary, - whereValue?: TObject - ): T; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.minBy - */ - minBy( - iteratee?: ListIterator - ): T; - - /** - * @see _.minBy - */ - minBy( - iteratee?: string - ): T; - - /** - * @see _.minBy - */ - minBy( - whereValue?: TObject - ): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.minBy - */ - minBy( - iteratee?: ListIterator|DictionaryIterator - ): T; - - /** - * @see _.minBy - */ - minBy( - iteratee?: string - ): T; - - /** - * @see _.minBy - */ - minBy( - whereValue?: TObject - ): T; - } - - //_.round - interface LoDashStatic { - /** - * Calculates n rounded to precision. - * - * @param n The number to round. - * @param precision The precision to round to. - * @return Returns the rounded number. - */ - round( - n: number, - precision?: number - ): number; - } - - interface LoDashImplicitWrapper { - /** - * @see _.round - */ - round(precision?: number): number; - } - - interface LoDashExplicitWrapper { - /** - * @see _.round - */ - round(precision?: number): LoDashExplicitWrapper; - } - - //_.sum - interface LoDashStatic { - /** - * Computes the sum of the values in `array`. - * - * @static - * @memberOf _ - * @category Math - * @param {Array} array The array to iterate over. - * @returns {number} Returns the sum. - * @example - * - * _.sum([4, 2, 8, 6]); - * // => 20 - */ - sum(collection: List): number; - - /** - * @see _.sum - */ - sum(collection: List|Dictionary): number; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.sum - */ - sum(): number; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.sum - **/ - sum(): number; - - /** - * @see _.sum - */ - sum(): number; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.sum - */ - sum(): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.sum - */ - sum(): LoDashExplicitWrapper; - - /** - * @see _.sum - */ - sum(): LoDashExplicitWrapper; - } - - //_.sumBy - interface LoDashStatic { - /** - * This method is like `_.sum` except that it accepts `iteratee` which is - * invoked for each element in `array` to generate the value to be summed. - * The iteratee is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @category Math - * @param {Array} array The array to iterate over. - * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. - * @returns {number} Returns the sum. - * @example - * - * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }]; - * - * _.sumBy(objects, function(o) { return o.n; }); - * // => 20 - * - * // using the `_.property` iteratee shorthand - * _.sumBy(objects, 'n'); - * // => 20 - */ - sumBy( - collection: List, - iteratee: ListIterator - ): number; - - /** - * @see _.sumBy - **/ - sumBy( - collection: Dictionary, - iteratee: DictionaryIterator - ): number; - - /** - * @see _.sumBy - */ - sumBy( - collection: List|Dictionary, - iteratee: string - ): number; - - /** - * @see _.sumBy - */ - sumBy(collection: List|Dictionary): number; - - /** - * @see _.sumBy - */ - sumBy(collection: List|Dictionary): number; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.sumBy - */ - sumBy( - iteratee: ListIterator - ): number; - - /** - * @see _.sumBy - */ - sumBy(iteratee: string): number; - - /** - * @see _.sumBy - */ - sumBy(): number; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.sumBy - **/ - sumBy( - iteratee: ListIterator|DictionaryIterator - ): number; - - /** - * @see _.sumBy - */ - sumBy(iteratee: string): number; - - /** - * @see _.sumBy - */ - sumBy(): number; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.sumBy - */ - sumBy( - iteratee: ListIterator - ): LoDashExplicitWrapper; - - /** - * @see _.sumBy - */ - sumBy(iteratee: string): LoDashExplicitWrapper; - - /** - * @see _.sumBy - */ - sumBy(): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.sumBy - */ - sumBy( - iteratee: ListIterator|DictionaryIterator - ): LoDashExplicitWrapper; - - /** - * @see _.sumBy - */ - sumBy(iteratee: string): LoDashExplicitWrapper; - - /** - * @see _.sumBy - */ - sumBy(): LoDashExplicitWrapper; - } - - /********** - * Number * - **********/ - - //_.subtract - interface LoDashStatic { - /** - * Subtract two numbers. - * - * @static - * @memberOf _ - * @category Math - * @param {number} minuend The first number in a subtraction. - * @param {number} subtrahend The second number in a subtraction. - * @returns {number} Returns the difference. - * @example - * - * _.subtract(6, 4); - * // => 2 - */ - subtract( - minuend: number, - subtrahend: number - ): number; - } - - interface LoDashImplicitWrapper { - /** - * @see _.subtract - */ - subtract( - subtrahend: number - ): number; - } - - interface LoDashExplicitWrapper { - /** - * @see _.subtract - */ - subtract( - subtrahend: number - ): LoDashExplicitWrapper; - } - - //_.clamp - interface LoDashStatic { - /** - * Clamps `number` within the inclusive `lower` and `upper` bounds. - * - * @static - * @memberOf _ - * @category Number - * @param {number} number The number to clamp. - * @param {number} [lower] The lower bound. - * @param {number} upper The upper bound. - * @returns {number} Returns the clamped number. - * @example - * - * _.clamp(-10, -5, 5); - * // => -5 - * - * _.clamp(10, -5, 5); - * // => 5 - */ - clamp( - number: number, - lower: number, - upper: number - ): number; - } - - interface LoDashImplicitWrapper { - /** - * @see _.clamp - */ - clamp( - lower: number, - upper: number - ): number; - } - - interface LoDashExplicitWrapper { - /** - * @see _.clamp - */ - clamp( - lower: number, - upper: number - ): LoDashExplicitWrapper; - } - - //_.inRange - interface LoDashStatic { - /** - * Checks if n is between start and up to but not including, end. If end is not specified it’s set to start - * with start then set to 0. - * - * @param n The number to check. - * @param start The start of the range. - * @param end The end of the range. - * @return Returns true if n is in the range, else false. - */ - inRange( - n: number, - start: number, - end: number - ): boolean; - - - /** - * @see _.inRange - */ - inRange( - n: number, - end: number - ): boolean; - } - - interface LoDashImplicitWrapper { - /** - * @see _.inRange - */ - inRange( - start: number, - end: number - ): boolean; - - /** - * @see _.inRange - */ - inRange(end: number): boolean; - } - - interface LoDashExplicitWrapper { - /** - * @see _.inRange - */ - inRange( - start: number, - end: number - ): LoDashExplicitWrapper; - - /** - * @see _.inRange - */ - inRange(end: number): LoDashExplicitWrapper; - } - - //_.random - interface LoDashStatic { - /** - * Produces a random number between min and max (inclusive). If only one argument is provided a number between - * 0 and the given number is returned. If floating is true, or either min or max are floats, a floating-point - * number is returned instead of an integer. - * - * @param min The minimum possible value. - * @param max The maximum possible value. - * @param floating Specify returning a floating-point number. - * @return Returns the random number. - */ - random( - min?: number, - max?: number, - floating?: boolean - ): number; - - /** - * @see _.random - */ - random( - min?: number, - floating?: boolean - ): number; - - /** - * @see _.random - */ - random(floating?: boolean): number; - } - - interface LoDashImplicitWrapper { - /** - * @see _.random - */ - random( - max?: number, - floating?: boolean - ): number; - - /** - * @see _.random - */ - random(floating?: boolean): number; - } - - interface LoDashExplicitWrapper { - /** - * @see _.random - */ - random( - max?: number, - floating?: boolean - ): LoDashExplicitWrapper; - - /** - * @see _.random - */ - random(floating?: boolean): LoDashExplicitWrapper; - } - - /********** - * Object * - **********/ - - //_.assign - interface LoDashStatic { - /** - * Assigns own enumerable properties of source objects to the destination - * object. Source objects are applied from left to right. Subsequent sources - * overwrite property assignments of previous sources. - * - * **Note:** This method mutates `object` and is loosely based on - * [`Object.assign`](https://mdn.io/Object/assign). - * - * @static - * @memberOf _ - * @category Object - * @param {Object} object The destination object. - * @param {...Object} [sources] The source objects. - * @returns {Object} Returns `object`. - * @example - * - * function Foo() { - * this.c = 3; - * } - * - * function Bar() { - * this.e = 5; - * } - * - * Foo.prototype.d = 4; - * Bar.prototype.f = 6; - * - * _.assign({ 'a': 1 }, new Foo, new Bar); - * // => { 'a': 1, 'c': 3, 'e': 5 } - */ - assign( - object: TObject, - source: TSource - ): TResult; - - /** - * @see assign - */ - assign( - object: TObject, - source1: TSource1, - source2: TSource2 - ): TResult; - - /** - * @see assign - */ - assign( - object: TObject, - source1: TSource1, - source2: TSource2, - source3: TSource3 - ): TResult; - - /** - * @see assign - */ - assign - ( - object: TObject, - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4 - ): TResult; - - /** - * @see _.assign - */ - assign(object: TObject): TObject; - - /** - * @see _.assign - */ - assign( - object: TObject, ...otherArgs: any[] - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.assign - */ - assign( - source: TSource - ): LoDashImplicitObjectWrapper; - - /** - * @see assign - */ - assign( - source1: TSource1, - source2: TSource2 - ): LoDashImplicitObjectWrapper; - - /** - * @see assign - */ - assign( - source1: TSource1, - source2: TSource2, - source3: TSource3 - ): LoDashImplicitObjectWrapper; - - /** - * @see assign - */ - assign( - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4 - ): LoDashImplicitObjectWrapper; - - /** - * @see _.assign - */ - assign(): LoDashImplicitObjectWrapper; - - /** - * @see _.assign - */ - assign(...otherArgs: any[]): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.assign - */ - assign( - source: TSource - ): LoDashExplicitObjectWrapper; - - /** - * @see assign - */ - assign( - source1: TSource1, - source2: TSource2 - ): LoDashExplicitObjectWrapper; - - /** - * @see assign - */ - assign( - source1: TSource1, - source2: TSource2, - source3: TSource3 - ): LoDashExplicitObjectWrapper; - - /** - * @see assign - */ - assign( - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4 - ): LoDashExplicitObjectWrapper; - - /** - * @see _.assign - */ - assign(): LoDashExplicitObjectWrapper; - - /** - * @see _.assign - */ - assign(...otherArgs: any[]): LoDashExplicitObjectWrapper; - } - - //_.assignWith - interface AssignCustomizer { - (objectValue: any, sourceValue: any, key?: string, object?: {}, source?: {}): any; - } - - interface LoDashStatic { - /** - * This method is like `_.assign` except that it accepts `customizer` which - * is invoked to produce the assigned values. If `customizer` returns `undefined` - * assignment is handled by the method instead. The `customizer` is invoked - * with five arguments: (objValue, srcValue, key, object, source). - * - * **Note:** This method mutates `object`. - * - * @static - * @memberOf _ - * @category Object - * @param {Object} object The destination object. - * @param {...Object} sources The source objects. - * @param {Function} [customizer] The function to customize assigned values. - * @returns {Object} Returns `object`. - * @example - * - * function customizer(objValue, srcValue) { - * return _.isUndefined(objValue) ? srcValue : objValue; - * } - * - * var defaults = _.partialRight(_.assignWith, customizer); - * - * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); - * // => { 'a': 1, 'b': 2 } - */ - assignWith( - object: TObject, - source: TSource, - customizer: AssignCustomizer - ): TResult; - - /** - * @see assignWith - */ - assignWith( - object: TObject, - source1: TSource1, - source2: TSource2, - customizer: AssignCustomizer - ): TResult; - - /** - * @see assignWith - */ - assignWith( - object: TObject, - source1: TSource1, - source2: TSource2, - source3: TSource3, - customizer: AssignCustomizer - ): TResult; - - /** - * @see assignWith - */ - assignWith - ( - object: TObject, - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4, - customizer: AssignCustomizer - ): TResult; - - /** - * @see _.assignWith - */ - assignWith(object: TObject): TObject; - - /** - * @see _.assignWith - */ - assignWith( - object: TObject, ...otherArgs: any[] - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.assignWith - */ - assignWith( - source: TSource, - customizer: AssignCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see assignWith - */ - assignWith( - source1: TSource1, - source2: TSource2, - customizer: AssignCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see assignWith - */ - assignWith( - source1: TSource1, - source2: TSource2, - source3: TSource3, - customizer: AssignCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see assignWith - */ - assignWith( - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4, - customizer: AssignCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see _.assignWith - */ - assignWith(): LoDashImplicitObjectWrapper; - - /** - * @see _.assignWith - */ - assignWith(...otherArgs: any[]): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.assignWith - */ - assignWith( - source: TSource, - customizer: AssignCustomizer - ): LoDashExplicitObjectWrapper; - - /** - * @see assignWith - */ - assignWith( - source1: TSource1, - source2: TSource2, - customizer: AssignCustomizer - ): LoDashExplicitObjectWrapper; - - /** - * @see assignWith - */ - assignWith( - source1: TSource1, - source2: TSource2, - source3: TSource3, - customizer: AssignCustomizer - ): LoDashExplicitObjectWrapper; - - /** - * @see assignWith - */ - assignWith( - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4, - customizer: AssignCustomizer - ): LoDashExplicitObjectWrapper; - - /** - * @see _.assignWith - */ - assignWith(): LoDashExplicitObjectWrapper; - - /** - * @see _.assignWith - */ - assignWith(...otherArgs: any[]): LoDashExplicitObjectWrapper; - } - - //_.assignIn - interface LoDashStatic { - /** - * This method is like `_.assign` except that it iterates over own and - * inherited source properties. - * - * **Note:** This method mutates `object`. - * - * @static - * @memberOf _ - * @alias extend - * @category Object - * @param {Object} object The destination object. - * @param {...Object} [sources] The source objects. - * @returns {Object} Returns `object`. - * @example - * - * function Foo() { - * this.b = 2; - * } - * - * function Bar() { - * this.d = 4; - * } - * - * Foo.prototype.c = 3; - * Bar.prototype.e = 5; - * - * _.assignIn({ 'a': 1 }, new Foo, new Bar); - * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5 } - */ - assignIn( - object: TObject, - source: TSource - ): TResult; - - /** - * @see assignIn - */ - assignIn( - object: TObject, - source1: TSource1, - source2: TSource2 - ): TResult; - - /** - * @see assignIn - */ - assignIn( - object: TObject, - source1: TSource1, - source2: TSource2, - source3: TSource3 - ): TResult; - - /** - * @see assignIn - */ - assignIn - ( - object: TObject, - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4 - ): TResult; - - /** - * @see _.assignIn - */ - assignIn(object: TObject): TObject; - - /** - * @see _.assignIn - */ - assignIn( - object: TObject, ...otherArgs: any[] - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.assignIn - */ - assignIn( - source: TSource - ): LoDashImplicitObjectWrapper; - - /** - * @see assignIn - */ - assignIn( - source1: TSource1, - source2: TSource2 - ): LoDashImplicitObjectWrapper; - - /** - * @see assignIn - */ - assignIn( - source1: TSource1, - source2: TSource2, - source3: TSource3 - ): LoDashImplicitObjectWrapper; - - /** - * @see assignIn - */ - assignIn( - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4 - ): LoDashImplicitObjectWrapper; - - /** - * @see _.assignIn - */ - assignIn(): LoDashImplicitObjectWrapper; - - /** - * @see _.assignIn - */ - assignIn(...otherArgs: any[]): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.assignIn - */ - assignIn( - source: TSource - ): LoDashExplicitObjectWrapper; - - /** - * @see assignIn - */ - assignIn( - source1: TSource1, - source2: TSource2 - ): LoDashExplicitObjectWrapper; - - /** - * @see assignIn - */ - assignIn( - source1: TSource1, - source2: TSource2, - source3: TSource3 - ): LoDashExplicitObjectWrapper; - - /** - * @see assignIn - */ - assignIn( - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4 - ): LoDashExplicitObjectWrapper; - - /** - * @see _.assignIn - */ - assignIn(): LoDashExplicitObjectWrapper; - - /** - * @see _.assignIn - */ - assignIn(...otherArgs: any[]): LoDashExplicitObjectWrapper; - } - - //_.assignInWith - interface AssignCustomizer { - (objectValue: any, sourceValue: any, key?: string, object?: {}, source?: {}): any; - } - - interface LoDashStatic { - /** - * This method is like `_.assignIn` except that it accepts `customizer` which - * is invoked to produce the assigned values. If `customizer` returns `undefined` - * assignment is handled by the method instead. The `customizer` is invoked - * with five arguments: (objValue, srcValue, key, object, source). - * - * **Note:** This method mutates `object`. - * - * @static - * @memberOf _ - * @alias extendWith - * @category Object - * @param {Object} object The destination object. - * @param {...Object} sources The source objects. - * @param {Function} [customizer] The function to customize assigned values. - * @returns {Object} Returns `object`. - * @example - * - * function customizer(objValue, srcValue) { - * return _.isUndefined(objValue) ? srcValue : objValue; - * } - * - * var defaults = _.partialRight(_.assignInWith, customizer); - * - * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 }); - * // => { 'a': 1, 'b': 2 } - */ - assignInWith( - object: TObject, - source: TSource, - customizer: AssignCustomizer - ): TResult; - - /** - * @see assignInWith - */ - assignInWith( - object: TObject, - source1: TSource1, - source2: TSource2, - customizer: AssignCustomizer - ): TResult; - - /** - * @see assignInWith - */ - assignInWith( - object: TObject, - source1: TSource1, - source2: TSource2, - source3: TSource3, - customizer: AssignCustomizer - ): TResult; - - /** - * @see assignInWith - */ - assignInWith - ( - object: TObject, - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4, - customizer: AssignCustomizer - ): TResult; - - /** - * @see _.assignInWith - */ - assignInWith(object: TObject): TObject; - - /** - * @see _.assignInWith - */ - assignInWith( - object: TObject, ...otherArgs: any[] - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.assignInWith - */ - assignInWith( - source: TSource, - customizer: AssignCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see assignInWith - */ - assignInWith( - source1: TSource1, - source2: TSource2, - customizer: AssignCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see assignInWith - */ - assignInWith( - source1: TSource1, - source2: TSource2, - source3: TSource3, - customizer: AssignCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see assignInWith - */ - assignInWith( - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4, - customizer: AssignCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see _.assignInWith - */ - assignInWith(): LoDashImplicitObjectWrapper; - - /** - * @see _.assignInWith - */ - assignInWith(...otherArgs: any[]): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.assignInWith - */ - assignInWith( - source: TSource, - customizer: AssignCustomizer - ): LoDashExplicitObjectWrapper; - - /** - * @see assignInWith - */ - assignInWith( - source1: TSource1, - source2: TSource2, - customizer: AssignCustomizer - ): LoDashExplicitObjectWrapper; - - /** - * @see assignInWith - */ - assignInWith( - source1: TSource1, - source2: TSource2, - source3: TSource3, - customizer: AssignCustomizer - ): LoDashExplicitObjectWrapper; - - /** - * @see assignInWith - */ - assignInWith( - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4, - customizer: AssignCustomizer - ): LoDashExplicitObjectWrapper; - - /** - * @see _.assignInWith - */ - assignInWith(): LoDashExplicitObjectWrapper; - - /** - * @see _.assignInWith - */ - assignInWith(...otherArgs: any[]): LoDashExplicitObjectWrapper; - } - - //_.create - interface LoDashStatic { - /** - * Creates an object that inherits from the given prototype object. If a properties object is provided its own - * enumerable properties are assigned to the created object. - * - * @param prototype The object to inherit from. - * @param properties The properties to assign to the object. - * @return Returns the new object. - */ - create( - prototype: T, - properties?: U - ): T & U; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.create - */ - create(properties?: U): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.create - */ - create(properties?: U): LoDashExplicitObjectWrapper; - } - - //_.defaults - interface LoDashStatic { - /** - * Assigns own enumerable properties of source object(s) to the destination object for all destination - * properties that resolve to undefined. Once a property is set, additional values of the same property are - * ignored. - * - * Note: This method mutates object. - * - * @param object The destination object. - * @param sources The source objects. - * @return The destination object. - */ - defaults( - object: Obj, - ...sources: {}[] - ): TResult; - - /** - * @see _.defaults - */ - defaults( - object: Obj, - source1: S1, - ...sources: {}[] - ): TResult; - - /** - * @see _.defaults - */ - defaults( - object: Obj, - source1: S1, - source2: S2, - ...sources: {}[] - ): TResult; - - /** - * @see _.defaults - */ - defaults( - object: Obj, - source1: S1, - source2: S2, - source3: S3, - ...sources: {}[] - ): TResult; - - /** - * @see _.defaults - */ - defaults( - object: Obj, - source1: S1, - source2: S2, - source3: S3, - source4: S4, - ...sources: {}[] - ): TResult; - - /** - * @see _.defaults - */ - defaults( - object: {}, - ...sources: {}[] - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.defaults - */ - defaults( - source1: S1, - ...sources: {}[] - ): LoDashImplicitObjectWrapper; - - /** - * @see _.defaults - */ - defaults( - source1: S1, - source2: S2, - ...sources: {}[] - ): LoDashImplicitObjectWrapper; - - /** - * @see _.defaults - */ - defaults( - source1: S1, - source2: S2, - source3: S3, - ...sources: {}[] - ): LoDashImplicitObjectWrapper; - - /** - * @see _.defaults - */ - defaults( - source1: S1, - source2: S2, - source3: S3, - source4: S4, - ...sources: {}[] - ): LoDashImplicitObjectWrapper; - - /** - * @see _.defaults - */ - defaults(): LoDashImplicitObjectWrapper; - - /** - * @see _.defaults - */ - defaults(...sources: {}[]): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.defaults - */ - defaults( - source1: S1, - ...sources: {}[] - ): LoDashExplicitObjectWrapper; - - /** - * @see _.defaults - */ - defaults( - source1: S1, - source2: S2, - ...sources: {}[] - ): LoDashExplicitObjectWrapper; - - /** - * @see _.defaults - */ - defaults( - source1: S1, - source2: S2, - source3: S3, - ...sources: {}[] - ): LoDashExplicitObjectWrapper; - - /** - * @see _.defaults - */ - defaults( - source1: S1, - source2: S2, - source3: S3, - source4: S4, - ...sources: {}[] - ): LoDashExplicitObjectWrapper; - - /** - * @see _.defaults - */ - defaults(): LoDashExplicitObjectWrapper; - - /** - * @see _.defaults - */ - defaults(...sources: {}[]): LoDashExplicitObjectWrapper; - } - - //_.defaultsDeep - interface LoDashStatic { - /** - * This method is like _.defaults except that it recursively assigns default properties. - * @param object The destination object. - * @param sources The source objects. - * @return Returns object. - **/ - defaultsDeep( - object: T, - ...sources: any[]): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.defaultsDeep - **/ - defaultsDeep(...sources: any[]): LoDashImplicitObjectWrapper - } - - //_.extend - interface LoDashStatic { - /** - * @see assign - */ - extend( - object: TObject, - source: TSource, - customizer?: AssignCustomizer - ): TResult; - - /** - * @see assign - */ - extend( - object: TObject, - source1: TSource1, - source2: TSource2, - customizer?: AssignCustomizer - ): TResult; - - /** - * @see assign - */ - extend( - object: TObject, - source1: TSource1, - source2: TSource2, - source3: TSource3, - customizer?: AssignCustomizer - ): TResult; - - /** - * @see assign - */ - extend - ( - object: TObject, - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4, - customizer?: AssignCustomizer - ): TResult; - - /** - * @see _.assign - */ - extend(object: TObject): TObject; - - /** - * @see _.assign - */ - extend( - object: TObject, ...otherArgs: any[] - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.assign - */ - extend( - source: TSource, - customizer?: AssignCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see assign - */ - extend( - source1: TSource1, - source2: TSource2, - customizer?: AssignCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see assign - */ - extend( - source1: TSource1, - source2: TSource2, - source3: TSource3, - customizer?: AssignCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see assign - */ - extend( - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4, - customizer?: AssignCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see _.assign - */ - extend(): LoDashImplicitObjectWrapper; - - /** - * @see _.assign - */ - extend(...otherArgs: any[]): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.assign - */ - extend( - source: TSource, - customizer?: AssignCustomizer - ): LoDashExplicitObjectWrapper; - - /** - * @see assign - */ - extend( - source1: TSource1, - source2: TSource2, - customizer?: AssignCustomizer - ): LoDashExplicitObjectWrapper; - - /** - * @see assign - */ - extend( - source1: TSource1, - source2: TSource2, - source3: TSource3, - customizer?: AssignCustomizer - ): LoDashExplicitObjectWrapper; - - /** - * @see assign - */ - extend( - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4, - customizer?: AssignCustomizer - ): LoDashExplicitObjectWrapper; - - /** - * @see _.assign - */ - extend(): LoDashExplicitObjectWrapper; - - /** - * @see _.assign - */ - extend(...otherArgs: any[]): LoDashExplicitObjectWrapper; - } - - //_.findKey - interface LoDashStatic { - /** - * This method is like _.find except that it returns the key of the first element predicate returns truthy for - * instead of the element itself. - * - * If a property name is provided for predicate the created _.property style callback returns the property - * value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for predicate the created _.matches style callback returns true for elements that - * have the properties of the given object, else false. - * - * @param object The object to search. - * @param predicate The function invoked per iteration. - * @param thisArg The this binding of predicate. - * @return Returns the key of the matched element, else undefined. - */ - findKey( - object: TObject, - predicate?: DictionaryIterator - ): string; - - /** - * @see _.findKey - */ - findKey( - object: TObject, - predicate?: ObjectIterator - ): string; - - /** - * @see _.findKey - */ - findKey( - object: TObject, - predicate?: string - ): string; - - /** - * @see _.findKey - */ - findKey, TObject>( - object: TObject, - predicate?: TWhere - ): string; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.findKey - */ - findKey( - predicate?: DictionaryIterator - ): string; - - /** - * @see _.findKey - */ - findKey( - predicate?: ObjectIterator - ): string; - - /** - * @see _.findKey - */ - findKey( - predicate?: string - ): string; - - /** - * @see _.findKey - */ - findKey>( - predicate?: TWhere - ): string; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.findKey - */ - findKey( - predicate?: DictionaryIterator - ): LoDashExplicitWrapper; - - /** - * @see _.findKey - */ - findKey( - predicate?: ObjectIterator - ): LoDashExplicitWrapper; - - /** - * @see _.findKey - */ - findKey( - predicate?: string - ): LoDashExplicitWrapper; - - /** - * @see _.findKey - */ - findKey>( - predicate?: TWhere - ): LoDashExplicitWrapper; - } - - //_.findLastKey - interface LoDashStatic { - /** - * This method is like _.findKey except that it iterates over elements of a collection in the opposite order. - * - * If a property name is provided for predicate the created _.property style callback returns the property - * value of the given element. - * - * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for - * elements that have a matching property value, else false. - * - * If an object is provided for predicate the created _.matches style callback returns true for elements that - * have the properties of the given object, else false. - * - * @param object The object to search. - * @param predicate The function invoked per iteration. - * @param thisArg The this binding of predicate. - * @return Returns the key of the matched element, else undefined. - */ - findLastKey( - object: TObject, - predicate?: DictionaryIterator - ): string; - - /** - * @see _.findLastKey - */ - findLastKey( - object: TObject, - predicate?: ObjectIterator - ): string; - - /** - * @see _.findLastKey - */ - findLastKey( - object: TObject, - predicate?: string - ): string; - - /** - * @see _.findLastKey - */ - findLastKey, TObject>( - object: TObject, - predicate?: TWhere - ): string; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.findLastKey - */ - findLastKey( - predicate?: DictionaryIterator - ): string; - - /** - * @see _.findLastKey - */ - findLastKey( - predicate?: ObjectIterator - ): string; - - /** - * @see _.findLastKey - */ - findLastKey( - predicate?: string - ): string; - - /** - * @see _.findLastKey - */ - findLastKey>( - predicate?: TWhere - ): string; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.findLastKey - */ - findLastKey( - predicate?: DictionaryIterator - ): LoDashExplicitWrapper; - - /** - * @see _.findLastKey - */ - findLastKey( - predicate?: ObjectIterator - ): LoDashExplicitWrapper; - - /** - * @see _.findLastKey - */ - findLastKey( - predicate?: string - ): LoDashExplicitWrapper; - - /** - * @see _.findLastKey - */ - findLastKey>( - predicate?: TWhere - ): LoDashExplicitWrapper; - } - - //_.forIn - interface LoDashStatic { - /** - * Iterates over own and inherited enumerable properties of an object invoking iteratee for each property. The - * iteratee is bound to thisArg and invoked with three arguments: (value, key, object). Iteratee functions may - * exit iteration early by explicitly returning false. - * - * @param object The object to iterate over. - * @param iteratee The function invoked per iteration. - * @param thisArg The this binding of iteratee. - * @return Returns object. - */ - forIn( - object: Dictionary, - iteratee?: DictionaryIterator - ): Dictionary; - - /** - * @see _.forIn - */ - forIn( - object: T, - iteratee?: ObjectIterator - ): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.forIn - */ - forIn( - iteratee?: DictionaryIterator - ): _.LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.forIn - */ - forIn( - iteratee?: DictionaryIterator - ): _.LoDashExplicitObjectWrapper; - } - - //_.forInRight - interface LoDashStatic { - /** - * This method is like _.forIn except that it iterates over properties of object in the opposite order. - * - * @param object The object to iterate over. - * @param iteratee The function invoked per iteration. - * @param thisArg The this binding of iteratee. - * @return Returns object. - */ - forInRight( - object: Dictionary, - iteratee?: DictionaryIterator - ): Dictionary; - - /** - * @see _.forInRight - */ - forInRight( - object: T, - iteratee?: ObjectIterator - ): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.forInRight - */ - forInRight( - iteratee?: DictionaryIterator - ): _.LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.forInRight - */ - forInRight( - iteratee?: DictionaryIterator - ): _.LoDashExplicitObjectWrapper; - } - - //_.forOwn - interface LoDashStatic { - /** - * Iterates over own enumerable properties of an object invoking iteratee for each property. The iteratee is - * bound to thisArg and invoked with three arguments: (value, key, object). Iteratee functions may exit - * iteration early by explicitly returning false. - * - * @param object The object to iterate over. - * @param iteratee The function invoked per iteration. - * @param thisArg The this binding of iteratee. - * @return Returns object. - */ - forOwn( - object: Dictionary, - iteratee?: DictionaryIterator - ): Dictionary; - - /** - * @see _.forOwn - */ - forOwn( - object: T, - iteratee?: ObjectIterator - ): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.forOwn - */ - forOwn( - iteratee?: DictionaryIterator - ): _.LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.forOwn - */ - forOwn( - iteratee?: DictionaryIterator - ): _.LoDashExplicitObjectWrapper; - } - - //_.forOwnRight - interface LoDashStatic { - /** - * This method is like _.forOwn except that it iterates over properties of object in the opposite order. - * - * @param object The object to iterate over. - * @param iteratee The function invoked per iteration. - * @param thisArg The this binding of iteratee. - * @return Returns object. - */ - forOwnRight( - object: Dictionary, - iteratee?: DictionaryIterator - ): Dictionary; - - /** - * @see _.forOwnRight - */ - forOwnRight( - object: T, - iteratee?: ObjectIterator - ): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.forOwnRight - */ - forOwnRight( - iteratee?: DictionaryIterator - ): _.LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.forOwnRight - */ - forOwnRight( - iteratee?: DictionaryIterator - ): _.LoDashExplicitObjectWrapper; - } - - //_.functions - interface LoDashStatic { - /** - * Creates an array of function property names from own enumerable properties - * of `object`. - * - * @static - * @memberOf _ - * @category Object - * @param {Object} object The object to inspect. - * @returns {Array} Returns the new array of property names. - * @example - * - * function Foo() { - * this.a = _.constant('a'); - * this.b = _.constant('b'); - * } - * - * Foo.prototype.c = _.constant('c'); - * - * _.functions(new Foo); - * // => ['a', 'b'] - */ - functions(object: any): string[]; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.functions - */ - functions(): _.LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.functions - */ - functions(): _.LoDashExplicitArrayWrapper; - } - - //_.functionsIn - interface LoDashStatic { - /** - * Creates an array of function property names from own and inherited - * enumerable properties of `object`. - * - * @static - * @memberOf _ - * @category Object - * @param {Object} object The object to inspect. - * @returns {Array} Returns the new array of property names. - * @example - * - * function Foo() { - * this.a = _.constant('a'); - * this.b = _.constant('b'); - * } - * - * Foo.prototype.c = _.constant('c'); - * - * _.functionsIn(new Foo); - * // => ['a', 'b', 'c'] - */ - functionsIn(object: any): string[]; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.functionsIn - */ - functionsIn(): _.LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.functionsIn - */ - functionsIn(): _.LoDashExplicitArrayWrapper; - } - - //_.get - interface LoDashStatic { - /** - * Gets the property value at path of object. If the resolved value is undefined the defaultValue is used - * in its place. - * - * @param object The object to query. - * @param path The path of the property to get. - * @param defaultValue The value returned if the resolved value is undefined. - * @return Returns the resolved value. - */ - get( - object: TObject, - path: StringRepresentable|StringRepresentable[], - defaultValue?: TResult - ): TResult; - - /** - * @see _.get - */ - get( - object: any, - path: StringRepresentable|StringRepresentable[], - defaultValue?: TResult - ): TResult; - } - - interface LoDashImplicitWrapper { - /** - * @see _.get - */ - get( - path: StringRepresentable|StringRepresentable[], - defaultValue?: TResult - ): TResult; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.get - */ - get( - path: StringRepresentable|StringRepresentable[], - defaultValue?: TResult - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.get - */ - get( - path: StringRepresentable|StringRepresentable[], - defaultValue?: TResult - ): TResult; - } - - interface LoDashExplicitWrapper { - /** - * @see _.get - */ - get( - path: StringRepresentable|StringRepresentable[], - defaultValue?: any - ): TResultWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.get - */ - get( - path: StringRepresentable|StringRepresentable[], - defaultValue?: any - ): TResultWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.get - */ - get( - path: StringRepresentable|StringRepresentable[], - defaultValue?: any - ): TResultWrapper; - } - - //_.has - interface LoDashStatic { - /** - * Checks if `path` is a direct property of `object`. - * - * @static - * @memberOf _ - * @category Object - * @param {Object} object The object to query. - * @param {Array|string} path The path to check. - * @returns {boolean} Returns `true` if `path` exists, else `false`. - * @example - * - * var object = { 'a': { 'b': { 'c': 3 } } }; - * var other = _.create({ 'a': _.create({ 'b': _.create({ 'c': 3 }) }) }); - * - * _.has(object, 'a'); - * // => true - * - * _.has(object, 'a.b.c'); - * // => true - * - * _.has(object, ['a', 'b', 'c']); - * // => true - * - * _.has(other, 'a'); - * // => false - */ - has( - object: T, - path: StringRepresentable|StringRepresentable[] - ): boolean; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.has - */ - has(path: StringRepresentable|StringRepresentable[]): boolean; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.has - */ - has(path: StringRepresentable|StringRepresentable[]): LoDashExplicitWrapper; - } - - //_.hasIn - interface LoDashStatic { - /** - * Checks if `path` is a direct or inherited property of `object`. - * - * @static - * @memberOf _ - * @category Object - * @param {Object} object The object to query. - * @param {Array|string} path The path to check. - * @returns {boolean} Returns `true` if `path` exists, else `false`. - * @example - * - * var object = _.create({ 'a': _.create({ 'b': _.create({ 'c': 3 }) }) }); - * - * _.hasIn(object, 'a'); - * // => true - * - * _.hasIn(object, 'a.b.c'); - * // => true - * - * _.hasIn(object, ['a', 'b', 'c']); - * // => true - * - * _.hasIn(object, 'b'); - * // => false - */ - hasIn( - object: T, - path: StringRepresentable|StringRepresentable[] - ): boolean; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.hasIn - */ - hasIn(path: StringRepresentable|StringRepresentable[]): boolean; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.hasIn - */ - hasIn(path: StringRepresentable|StringRepresentable[]): LoDashExplicitWrapper; - } - - //_.invert - interface LoDashStatic { - /** - * Creates an object composed of the inverted keys and values of object. If object contains duplicate values, - * subsequent values overwrite property assignments of previous values unless multiValue is true. - * - * @param object The object to invert. - * @param multiValue Allow multiple values per key. - * @return Returns the new inverted object. - */ - invert( - object: T, - multiValue?: boolean - ): TResult; - - /** - * @see _.invert - */ - invert( - object: Object, - multiValue?: boolean - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.invert - */ - invert(multiValue?: boolean): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.invert - */ - invert(multiValue?: boolean): LoDashExplicitObjectWrapper; - } - - //_.inverBy - interface InvertByIterator { - (value: T): any; - } - - interface LoDashStatic { - /** - * This method is like _.invert except that the inverted object is generated from the results of running each - * element of object through iteratee. The corresponding inverted value of each inverted key is an array of - * keys responsible for generating the inverted value. The iteratee is invoked with one argument: (value). - * - * @param object The object to invert. - * @param interatee The iteratee invoked per element. - * @return Returns the new inverted object. - */ - invertBy( - object: Object, - interatee?: InvertByIterator|string - ): Dictionary; - - /** - * @see _.invertBy - */ - invertBy( - object: _.Dictionary|_.NumericDictionary, - interatee?: InvertByIterator|string - ): Dictionary; - - /** - * @see _.invertBy - */ - invertBy( - object: Object, - interatee?: W - ): Dictionary; - - /** - * @see _.invertBy - */ - invertBy( - object: _.Dictionary, - interatee?: W - ): Dictionary; - } - - interface LoDashImplicitWrapper { - /** - * @see _.invertBy - */ - invertBy( - interatee?: InvertByIterator - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.invertBy - */ - invertBy( - interatee?: InvertByIterator|string - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.invertBy - */ - invertBy( - interatee?: W - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.invertBy - */ - invertBy( - interatee?: InvertByIterator|string - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.invertBy - */ - invertBy( - interatee?: W - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashExplicitWrapper { - /** - * @see _.invertBy - */ - invertBy( - interatee?: InvertByIterator - ): LoDashExplicitObjectWrapper>; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.invertBy - */ - invertBy( - interatee?: InvertByIterator|string - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.invertBy - */ - invertBy( - interatee?: W - ): LoDashExplicitObjectWrapper>; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.invertBy - */ - invertBy( - interatee?: InvertByIterator|string - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.invertBy - */ - invertBy( - interatee?: W - ): LoDashExplicitObjectWrapper>; - } - - //_.keys - interface LoDashStatic { - /** - * Creates an array of the own enumerable property names of object. - * - * Note: Non-object values are coerced to objects. See the ES spec for more details. - * - * @param object The object to query. - * @return Returns the array of property names. - */ - keys(object?: any): string[]; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.keys - */ - keys(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.keys - */ - keys(): LoDashExplicitArrayWrapper; - } - - //_.keysIn - interface LoDashStatic { - /** - * Creates an array of the own and inherited enumerable property names of object. - * - * Note: Non-object values are coerced to objects. - * - * @param object The object to query. - * @return An array of property names. - */ - keysIn(object?: any): string[]; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.keysIn - */ - keysIn(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.keysIn - */ - keysIn(): LoDashExplicitArrayWrapper; - } - - //_.mapKeys - interface LoDashStatic { - /** - * The opposite of _.mapValues; this method creates an object with the same values as object and keys generated - * by running each own enumerable property of object through iteratee. - * - * @param object The object to iterate over. - * @param iteratee The function invoked per iteration. - * @param thisArg The this binding of iteratee. - * @return Returns the new mapped object. - */ - mapKeys( - object: List, - iteratee?: ListIterator - ): Dictionary; - - /** - * @see _.mapKeys - */ - mapKeys( - object: Dictionary, - iteratee?: DictionaryIterator - ): Dictionary; - - /** - * @see _.mapKeys - */ - mapKeys( - object: List|Dictionary, - iteratee?: TObject - ): Dictionary; - - /** - * @see _.mapKeys - */ - mapKeys( - object: List|Dictionary, - iteratee?: string - ): Dictionary; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.mapKeys - */ - mapKeys( - iteratee?: ListIterator - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.mapKeys - */ - mapKeys( - iteratee?: TObject - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.mapKeys - */ - mapKeys( - iteratee?: string - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.mapKeys - */ - mapKeys( - iteratee?: ListIterator|DictionaryIterator - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.mapKeys - */ - mapKeys( - iteratee?: TObject - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.mapKeys - */ - mapKeys( - iteratee?: string - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.mapKeys - */ - mapKeys( - iteratee?: ListIterator - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.mapKeys - */ - mapKeys( - iteratee?: TObject - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.mapKeys - */ - mapKeys( - iteratee?: string - ): LoDashExplicitObjectWrapper>; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.mapKeys - */ - mapKeys( - iteratee?: ListIterator|DictionaryIterator - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.mapKeys - */ - mapKeys( - iteratee?: TObject - ): LoDashExplicitObjectWrapper>; - - /** - * @see _.mapKeys - */ - mapKeys( - iteratee?: string - ): LoDashExplicitObjectWrapper>; - } - - //_.mapValues - interface LoDashStatic { - /** - * Creates an object with the same keys as object and values generated by running each own - * enumerable property of object through iteratee. The iteratee function is bound to thisArg - * and invoked with three arguments: (value, key, object). - * - * If a property name is provided iteratee the created "_.property" style callback returns - * the property value of the given element. - * - * If a value is also provided for thisArg the creted "_.matchesProperty" style callback returns - * true for elements that have a matching property value, else false;. - * - * If an object is provided for iteratee the created "_.matches" style callback returns true - * for elements that have the properties of the given object, else false. - * - * @param {Object} object The object to iterate over. - * @param {Function|Object|string} [iteratee=_.identity] The function invoked per iteration. - * @param {Object} [thisArg] The `this` binding of `iteratee`. - * @return {Object} Returns the new mapped object. - */ - mapValues(obj: Dictionary, callback: ObjectIterator): Dictionary; - mapValues(obj: Dictionary, where: Dictionary): Dictionary; - mapValues(obj: T, pluck: string): TMapped; - mapValues(obj: T, callback: ObjectIterator): T; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.mapValues - * TValue is the type of the property values of T. - * TResult is the type output by the ObjectIterator function - */ - mapValues(callback: ObjectIterator): LoDashImplicitObjectWrapper>; - - /** - * @see _.mapValues - * TResult is the type of the property specified by pluck. - * T should be a Dictionary> - */ - mapValues(pluck: string): LoDashImplicitObjectWrapper>; - - /** - * @see _.mapValues - * TResult is the type of the properties of each object in the values of T - * T should be a Dictionary> - */ - mapValues(where: Dictionary): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.mapValues - * TValue is the type of the property values of T. - * TResult is the type output by the ObjectIterator function - */ - mapValues(callback: ObjectIterator): LoDashExplicitObjectWrapper>; - - /** - * @see _.mapValues - * TResult is the type of the property specified by pluck. - * T should be a Dictionary> - */ - mapValues(pluck: string): LoDashExplicitObjectWrapper>; - - /** - * @see _.mapValues - * TResult is the type of the properties of each object in the values of T - * T should be a Dictionary> - */ - mapValues(where: Dictionary): LoDashExplicitObjectWrapper; - } - - //_.merge - interface LoDashStatic { - /** - * Recursively merges own and inherited enumerable properties of source - * objects into the destination object, skipping source properties that resolve - * to `undefined`. Array and plain object properties are merged recursively. - * Other objects and value types are overridden by assignment. Source objects - * are applied from left to right. Subsequent sources overwrite property - * assignments of previous sources. - * - * **Note:** This method mutates `object`. - * - * @static - * @memberOf _ - * @category Object - * @param {Object} object The destination object. - * @param {...Object} [sources] The source objects. - * @returns {Object} Returns `object`. - * @example - * - * var users = { - * 'data': [{ 'user': 'barney' }, { 'user': 'fred' }] - * }; - * - * var ages = { - * 'data': [{ 'age': 36 }, { 'age': 40 }] - * }; - * - * _.merge(users, ages); - * // => { 'data': [{ 'user': 'barney', 'age': 36 }, { 'user': 'fred', 'age': 40 }] } - */ - merge( - object: TObject, - source: TSource - ): TObject & TSource; - - /** - * @see _.merge - */ - merge( - object: TObject, - source1: TSource1, - source2: TSource2 - ): TObject & TSource1 & TSource2; - - /** - * @see _.merge - */ - merge( - object: TObject, - source1: TSource1, - source2: TSource2, - source3: TSource3 - ): TObject & TSource1 & TSource2 & TSource3; - - /** - * @see _.merge - */ - merge( - object: TObject, - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4 - ): TObject & TSource1 & TSource2 & TSource3 & TSource4; - - /** - * @see _.merge - */ - merge( - object: any, - ...otherArgs: any[] - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.merge - */ - merge( - source: TSource - ): LoDashImplicitObjectWrapper; - - /** - * @see _.merge - */ - merge( - source1: TSource1, - source2: TSource2 - ): LoDashImplicitObjectWrapper; - - /** - * @see _.merge - */ - merge( - source1: TSource1, - source2: TSource2, - source3: TSource3 - ): LoDashImplicitObjectWrapper; - - /** - * @see _.merge - */ - merge( - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4 - ): LoDashImplicitObjectWrapper; - - /** - * @see _.merge - */ - merge( - ...otherArgs: any[] - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.merge - */ - merge( - source: TSource - ): LoDashExplicitObjectWrapper; - - /** - * @see _.merge - */ - merge( - source1: TSource1, - source2: TSource2 - ): LoDashExplicitObjectWrapper; - - /** - * @see _.merge - */ - merge( - source1: TSource1, - source2: TSource2, - source3: TSource3 - ): LoDashExplicitObjectWrapper; - - /** - * @see _.merge - */ - merge( - ): LoDashExplicitObjectWrapper; - - /** - * @see _.merge - */ - merge( - ...otherArgs: any[] - ): LoDashExplicitObjectWrapper; - } - - //_.mergeWith - interface MergeWithCustomizer { - (value: any, srcValue: any, key?: string, object?: Object, source?: Object): any; - } - - interface LoDashStatic { - /** - * This method is like `_.merge` except that it accepts `customizer` which - * is invoked to produce the merged values of the destination and source - * properties. If `customizer` returns `undefined` merging is handled by the - * method instead. The `customizer` is invoked with seven arguments: - * (objValue, srcValue, key, object, source, stack). - * - * @static - * @memberOf _ - * @category Object - * @param {Object} object The destination object. - * @param {...Object} sources The source objects. - * @param {Function} customizer The function to customize assigned values. - * @returns {Object} Returns `object`. - * @example - * - * function customizer(objValue, srcValue) { - * if (_.isArray(objValue)) { - * return objValue.concat(srcValue); - * } - * } - * - * var object = { - * 'fruits': ['apple'], - * 'vegetables': ['beet'] - * }; - * - * var other = { - * 'fruits': ['banana'], - * 'vegetables': ['carrot'] - * }; - * - * _.merge(object, other, customizer); - * // => { 'fruits': ['apple', 'banana'], 'vegetables': ['beet', 'carrot'] } - */ - mergeWith( - object: TObject, - source: TSource, - customizer: MergeWithCustomizer - ): TObject & TSource; - - /** - * @see _.mergeWith - */ - mergeWith( - object: TObject, - source1: TSource1, - source2: TSource2, - customizer: MergeWithCustomizer - ): TObject & TSource1 & TSource2; - - /** - * @see _.mergeWith - */ - mergeWith( - object: TObject, - source1: TSource1, - source2: TSource2, - source3: TSource3, - customizer: MergeWithCustomizer - ): TObject & TSource1 & TSource2 & TSource3; - - /** - * @see _.mergeWith - */ - mergeWith( - object: TObject, - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4, - customizer: MergeWithCustomizer - ): TObject & TSource1 & TSource2 & TSource3 & TSource4; - - /** - * @see _.mergeWith - */ - mergeWith( - object: any, - ...otherArgs: any[] - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.mergeWith - */ - mergeWith( - source: TSource, - customizer: MergeWithCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see _.mergeWith - */ - mergeWith( - source1: TSource1, - source2: TSource2, - customizer: MergeWithCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see _.mergeWith - */ - mergeWith( - source1: TSource1, - source2: TSource2, - source3: TSource3, - customizer: MergeWithCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see _.mergeWith - */ - mergeWith( - source1: TSource1, - source2: TSource2, - source3: TSource3, - source4: TSource4, - customizer: MergeWithCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see _.mergeWith - */ - mergeWith( - ...otherArgs: any[] - ): LoDashImplicitObjectWrapper; - } - - //_.omit - interface LoDashStatic { - /** - * The opposite of `_.pick`; this method creates an object composed of the - * own and inherited enumerable properties of `object` that are not omitted. - * - * @static - * @memberOf _ - * @category Object - * @param {Object} object The source object. - * @param {...(string|string[])} [props] The property names to omit, specified - * individually or in arrays.. - * @returns {Object} Returns the new object. - * @example - * - * var object = { 'a': 1, 'b': '2', 'c': 3 }; - * - * _.omit(object, ['a', 'c']); - * // => { 'b': '2' } - */ - - omit( - object: T, - ...predicate: (StringRepresentable|StringRepresentable[])[] - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - - /** - * @see _.omit - */ - omit( - ...predicate: (StringRepresentable|StringRepresentable[])[] - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - - /** - * @see _.omit - */ - omit( - ...predicate: (StringRepresentable|StringRepresentable[])[] - ): LoDashExplicitObjectWrapper; - } - - //_.omitBy - interface LoDashStatic { - /** - * The opposite of `_.pickBy`; this method creates an object composed of the - * own and inherited enumerable properties of `object` that `predicate` - * doesn't return truthy for. - * - * @static - * @memberOf _ - * @category Object - * @param {Object} object The source object. - * @param {Function|Object|string} [predicate=_.identity] The function invoked per property. - * @returns {Object} Returns the new object. - * @example - * - * var object = { 'a': 1, 'b': '2', 'c': 3 }; - * - * _.omitBy(object, _.isNumber); - * // => { 'b': '2' } - */ - omitBy( - object: T, - predicate: ObjectIterator - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.omitBy - */ - omitBy( - predicate: ObjectIterator - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.omitBy - */ - omitBy( - predicate: ObjectIterator - ): LoDashExplicitObjectWrapper; - } - - //_.pick - interface LoDashStatic { - /** - * Creates an object composed of the picked `object` properties. - * - * @static - * @memberOf _ - * @category Object - * @param {Object} object The source object. - * @param {...(string|string[])} [props] The property names to pick, specified - * individually or in arrays. - * @returns {Object} Returns the new object. - * @example - * - * var object = { 'a': 1, 'b': '2', 'c': 3 }; - * - * _.pick(object, ['a', 'c']); - * // => { 'a': 1, 'c': 3 } - */ - pick( - object: T, - ...predicate: (StringRepresentable|StringRepresentable[])[] - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.pick - */ - pick( - ...predicate: (StringRepresentable|StringRepresentable[])[] - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.pick - */ - pick( - ...predicate: (StringRepresentable|StringRepresentable[])[] - ): LoDashExplicitObjectWrapper; - } - - //_.pickBy - interface LoDashStatic { - /** - * Creates an object composed of the `object` properties `predicate` returns - * truthy for. The predicate is invoked with one argument: (value). - * - * @static - * @memberOf _ - * @category Object - * @param {Object} object The source object. - * @param {Function|Object|string} [predicate=_.identity] The function invoked per property. - * @returns {Object} Returns the new object. - * @example - * - * var object = { 'a': 1, 'b': '2', 'c': 3 }; - * - * _.pickBy(object, _.isNumber); - * // => { 'a': 1, 'c': 3 } - */ - pickBy( - object: T, - predicate?: ObjectIterator - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.pickBy - */ - pickBy( - predicate?: ObjectIterator - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.pickBy - */ - pickBy( - predicate?: ObjectIterator - ): LoDashExplicitObjectWrapper; - } - - //_.result - interface LoDashStatic { - /** - * This method is like _.get except that if the resolved value is a function it’s invoked with the this binding - * of its parent object and its result is returned. - * - * @param object The object to query. - * @param path The path of the property to resolve. - * @param defaultValue The value returned if the resolved value is undefined. - * @return Returns the resolved value. - */ - result( - object: TObject, - path: StringRepresentable|StringRepresentable[], - defaultValue?: TResult|((...args: any[]) => TResult) - ): TResult; - - /** - * @see _.result - */ - result( - object: any, - path: StringRepresentable|StringRepresentable[], - defaultValue?: TResult|((...args: any[]) => TResult) - ): TResult; - } - - interface LoDashImplicitWrapper { - /** - * @see _.result - */ - result( - path: StringRepresentable|StringRepresentable[], - defaultValue?: TResult|((...args: any[]) => TResult) - ): TResult; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.result - */ - result( - path: StringRepresentable|StringRepresentable[], - defaultValue?: TResult|((...args: any[]) => TResult) - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.result - */ - result( - path: StringRepresentable|StringRepresentable[], - defaultValue?: TResult|((...args: any[]) => TResult) - ): TResult; - } - - interface LoDashExplicitWrapper { - /** - * @see _.result - */ - result( - path: StringRepresentable|StringRepresentable[], - defaultValue?: any - ): TResultWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.result - */ - result( - path: StringRepresentable|StringRepresentable[], - defaultValue?: any - ): TResultWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.result - */ - result( - path: StringRepresentable|StringRepresentable[], - defaultValue?: any - ): TResultWrapper; - } - - //_.set - interface LoDashStatic { - /** - * Sets the value at path of object. If a portion of path doesn’t exist it’s created. Arrays are created for - * missing index properties while objects are created for all other missing properties. Use _.setWith to - * customize path creation. - * - * @param object The object to modify. - * @param path The path of the property to set. - * @param value The value to set. - * @return Returns object. - */ - set( - object: Object, - path: StringRepresentable|StringRepresentable[], - value: any - ): TResult; - - /** - * @see _.set - */ - set( - object: Object, - path: StringRepresentable|StringRepresentable[], - value: V - ): TResult; - - /** - * @see _.set - */ - set( - object: O, - path: StringRepresentable|StringRepresentable[], - value: V - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.set - */ - set( - path: StringRepresentable|StringRepresentable[], - value: any - ): LoDashImplicitObjectWrapper; - - /** - * @see _.set - */ - set( - path: StringRepresentable|StringRepresentable[], - value: V - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.set - */ - set( - path: StringRepresentable|StringRepresentable[], - value: any - ): LoDashExplicitObjectWrapper; - - /** - * @see _.set - */ - set( - path: StringRepresentable|StringRepresentable[], - value: V - ): LoDashExplicitObjectWrapper; - } - - //_.setWith - interface SetWithCustomizer { - (nsValue: any, key: string, nsObject: T): any; - } - - interface LoDashStatic { - /** - * This method is like _.set except that it accepts customizer which is invoked to produce the objects of - * path. If customizer returns undefined path creation is handled by the method instead. The customizer is - * invoked with three arguments: (nsValue, key, nsObject). - * - * @param object The object to modify. - * @param path The path of the property to set. - * @param value The value to set. - * @parem customizer The function to customize assigned values. - * @return Returns object. - */ - setWith( - object: Object, - path: StringRepresentable|StringRepresentable[], - value: any, - customizer?: SetWithCustomizer - ): TResult; - - /** - * @see _.setWith - */ - setWith( - object: Object, - path: StringRepresentable|StringRepresentable[], - value: V, - customizer?: SetWithCustomizer - ): TResult; - - /** - * @see _.setWith - */ - setWith( - object: O, - path: StringRepresentable|StringRepresentable[], - value: V, - customizer?: SetWithCustomizer - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.setWith - */ - setWith( - path: StringRepresentable|StringRepresentable[], - value: any, - customizer?: SetWithCustomizer - ): LoDashImplicitObjectWrapper; - - /** - * @see _.setWith - */ - setWith( - path: StringRepresentable|StringRepresentable[], - value: V, - customizer?: SetWithCustomizer - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.setWith - */ - setWith( - path: StringRepresentable|StringRepresentable[], - value: any, - customizer?: SetWithCustomizer - ): LoDashExplicitObjectWrapper; - - /** - * @see _.setWith - */ - setWith( - path: StringRepresentable|StringRepresentable[], - value: V, - customizer?: SetWithCustomizer - ): LoDashExplicitObjectWrapper; - } - - //_.toPairs - interface LoDashStatic { - /** - * Creates an array of own enumerable key-value pairs for object. - * - * @param object The object to query. - * @return Returns the new array of key-value pairs. - */ - toPairs(object?: T): any[][]; - - toPairs(object?: T): TResult[][]; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.toPairs - */ - toPairs(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.toPairs - */ - toPairs(): LoDashExplicitArrayWrapper; - } - - //_.toPairsIn - interface LoDashStatic { - /** - * Creates an array of own and inherited enumerable key-value pairs for object. - * - * @param object The object to query. - * @return Returns the new array of key-value pairs. - */ - toPairsIn(object?: T): any[][]; - - toPairsIn(object?: T): TResult[][]; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.toPairsIn - */ - toPairsIn(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.toPairsIn - */ - toPairsIn(): LoDashExplicitArrayWrapper; - } - - //_.transform - interface LoDashStatic { - /** - * An alternative to _.reduce; this method transforms object to a new accumulator object which is the result of - * running each of its own enumerable properties through iteratee, with each invocation potentially mutating - * the accumulator object. The iteratee is bound to thisArg and invoked with four arguments: (accumulator, - * value, key, object). Iteratee functions may exit iteration early by explicitly returning false. - * - * @param object The object to iterate over. - * @param iteratee The function invoked per iteration. - * @param accumulator The custom accumulator value. - * @param thisArg The this binding of iteratee. - * @return Returns the accumulated value. - */ - transform( - object: T[], - iteratee?: MemoVoidArrayIterator, - accumulator?: TResult[] - ): TResult[]; - - /** - * @see _.transform - */ - transform( - object: T[], - iteratee?: MemoVoidArrayIterator>, - accumulator?: Dictionary - ): Dictionary; - - /** - * @see _.transform - */ - transform( - object: Dictionary, - iteratee?: MemoVoidDictionaryIterator>, - accumulator?: Dictionary - ): Dictionary; - - /** - * @see _.transform - */ - transform( - object: Dictionary, - iteratee?: MemoVoidDictionaryIterator, - accumulator?: TResult[] - ): TResult[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.transform - */ - transform( - iteratee?: MemoVoidArrayIterator, - accumulator?: TResult[] - ): LoDashImplicitArrayWrapper; - - /** - * @see _.transform - */ - transform( - iteratee?: MemoVoidArrayIterator>, - accumulator?: Dictionary - ): LoDashImplicitObjectWrapper>; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.transform - */ - transform( - iteratee?: MemoVoidDictionaryIterator>, - accumulator?: Dictionary - ): LoDashImplicitObjectWrapper>; - - /** - * @see _.transform - */ - transform( - iteratee?: MemoVoidDictionaryIterator, - accumulator?: TResult[] - ): LoDashImplicitArrayWrapper; - } - - //_.unset - interface LoDashStatic { - /** - * Removes the property at path of object. - * - * Note: This method mutates object. - * - * @param object The object to modify. - * @param path The path of the property to unset. - * @return Returns true if the property is deleted, else false. - */ - unset( - object: T, - path: StringRepresentable|StringRepresentable[] - ): boolean; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.unset - */ - unset(path: StringRepresentable|StringRepresentable[]): LoDashImplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.unset - */ - unset(path: StringRepresentable|StringRepresentable[]): LoDashExplicitWrapper; - } - - //_.update - interface LoDashStatic { - /** - * This method is like _.set except that accepts updater to produce the value to set. Use _.updateWith to - * customize path creation. The updater is invoked with one argument: (value). - * - * @param object The object to modify. - * @param path The path of the property to set. - * @param updater The function to produce the updated value. - * @return Returns object. - */ - update( - object: Object, - path: StringRepresentable|StringRepresentable[], - updater: Function - ): TResult; - - /** - * @see _.update - */ - update( - object: Object, - path: StringRepresentable|StringRepresentable[], - updater: U - ): TResult; - - /** - * @see _.update - */ - update( - object: O, - path: StringRepresentable|StringRepresentable[], - updater: Function - ): TResult; - - /** - * @see _.update - */ - update( - object: O, - path: StringRepresentable|StringRepresentable[], - updater: U - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.update - */ - update( - path: StringRepresentable|StringRepresentable[], - updater: any - ): LoDashImplicitObjectWrapper; - - /** - * @see _.update - */ - update( - path: StringRepresentable|StringRepresentable[], - updater: U - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.update - */ - update( - path: StringRepresentable|StringRepresentable[], - updater: any - ): LoDashExplicitObjectWrapper; - - /** - * @see _.update - */ - update( - path: StringRepresentable|StringRepresentable[], - updater: U - ): LoDashExplicitObjectWrapper; - } - - //_.values - interface LoDashStatic { - /** - * Creates an array of the own enumerable property values of object. - * - * @param object The object to query. - * @return Returns an array of property values. - */ - values(object?: any): T[]; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.values - */ - values(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.values - */ - values(): LoDashExplicitArrayWrapper; - } - - //_.valuesIn - interface LoDashStatic { - /** - * Creates an array of the own and inherited enumerable property values of object. - * - * @param object The object to query. - * @return Returns the array of property values. - */ - valuesIn(object?: any): T[]; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.valuesIn - */ - valuesIn(): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.valuesIn - */ - valuesIn(): LoDashExplicitArrayWrapper; - } - - /********** - * String * - **********/ - - //_.camelCase - interface LoDashStatic { - /** - * Converts string to camel case. - * - * @param string The string to convert. - * @return Returns the camel cased string. - */ - camelCase(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.camelCase - */ - camelCase(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.camelCase - */ - camelCase(): LoDashExplicitWrapper; - } - - //_.capitalize - interface LoDashStatic { - /** - * Converts the first character of string to upper case and the remaining to lower case. - * - * @param string The string to capitalize. - * @return Returns the capitalized string. - */ - capitalize(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.capitalize - */ - capitalize(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.capitalize - */ - capitalize(): LoDashExplicitWrapper; - } - - //_.deburr - interface LoDashStatic { - /** - * Deburrs string by converting latin-1 supplementary letters to basic latin letters and removing combining - * diacritical marks. - * - * @param string The string to deburr. - * @return Returns the deburred string. - */ - deburr(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.deburr - */ - deburr(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.deburr - */ - deburr(): LoDashExplicitWrapper; - } - - //_.endsWith - interface LoDashStatic { - /** - * Checks if string ends with the given target string. - * - * @param string The string to search. - * @param target The string to search for. - * @param position The position to search from. - * @return Returns true if string ends with target, else false. - */ - endsWith( - string?: string, - target?: string, - position?: number - ): boolean; - } - - interface LoDashImplicitWrapper { - /** - * @see _.endsWith - */ - endsWith( - target?: string, - position?: number - ): boolean; - } - - interface LoDashExplicitWrapper { - /** - * @see _.endsWith - */ - endsWith( - target?: string, - position?: number - ): LoDashExplicitWrapper; - } - - // _.escape - interface LoDashStatic { - /** - * Converts the characters "&", "<", ">", '"', "'", and "`" in string to their corresponding HTML entities. - * - * Note: No other characters are escaped. To escape additional characters use a third-party library like he. - * - * hough the ">" character is escaped for symmetry, characters like ">" and "/" don’t need escaping in HTML - * and have no special meaning unless they're part of a tag or unquoted attribute value. See Mathias Bynens’s - * article (under "semi-related fun fact") for more details. - * - * Backticks are escaped because in IE < 9, they can break out of attribute values or HTML comments. See #59, - * #102, #108, and #133 of the HTML5 Security Cheatsheet for more details. - * - * When working with HTML you should always quote attribute values to reduce XSS vectors. - * - * @param string The string to escape. - * @return Returns the escaped string. - */ - escape(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.escape - */ - escape(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.escape - */ - escape(): LoDashExplicitWrapper; - } - - // _.escapeRegExp - interface LoDashStatic { - /** - * Escapes the RegExp special characters "^", "$", "\", ".", "*", "+", "?", "(", ")", "[", "]", - * "{", "}", and "|" in string. - * - * @param string The string to escape. - * @return Returns the escaped string. - */ - escapeRegExp(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.escapeRegExp - */ - escapeRegExp(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.escapeRegExp - */ - escapeRegExp(): LoDashExplicitWrapper; - } - - //_.kebabCase - interface LoDashStatic { - /** - * Converts string to kebab case. - * - * @param string The string to convert. - * @return Returns the kebab cased string. - */ - kebabCase(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.kebabCase - */ - kebabCase(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.kebabCase - */ - kebabCase(): LoDashExplicitWrapper; - } - - //_.lowerCase - interface LoDashStatic { - /** - * Converts `string`, as space separated words, to lower case. - * - * @param string The string to convert. - * @return Returns the lower cased string. - */ - lowerCase(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.lowerCase - */ - lowerCase(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.lowerCase - */ - lowerCase(): LoDashExplicitWrapper; - } - - //_.lowerFirst - interface LoDashStatic { - /** - * Converts the first character of `string` to lower case. - * - * @param string The string to convert. - * @return Returns the converted string. - */ - lowerFirst(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.lowerFirst - */ - lowerFirst(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.lowerFirst - */ - lowerFirst(): LoDashExplicitWrapper; - } - - //_.pad - interface LoDashStatic { - /** - * Pads string on the left and right sides if it’s shorter than length. Padding characters are truncated if - * they can’t be evenly divided by length. - * - * @param string The string to pad. - * @param length The padding length. - * @param chars The string used as padding. - * @return Returns the padded string. - */ - pad( - string?: string, - length?: number, - chars?: string - ): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.pad - */ - pad( - length?: number, - chars?: string - ): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.pad - */ - pad( - length?: number, - chars?: string - ): LoDashExplicitWrapper; - } - - //_.padEnd - interface LoDashStatic { - /** - * Pads string on the right side if it’s shorter than length. Padding characters are truncated if they exceed - * length. - * - * @param string The string to pad. - * @param length The padding length. - * @param chars The string used as padding. - * @return Returns the padded string. - */ - padEnd( - string?: string, - length?: number, - chars?: string - ): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.padEnd - */ - padEnd( - length?: number, - chars?: string - ): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.padEnd - */ - padEnd( - length?: number, - chars?: string - ): LoDashExplicitWrapper; - } - - //_.padStart - interface LoDashStatic { - /** - * Pads string on the left side if it’s shorter than length. Padding characters are truncated if they exceed - * length. - * - * @param string The string to pad. - * @param length The padding length. - * @param chars The string used as padding. - * @return Returns the padded string. - */ - padStart( - string?: string, - length?: number, - chars?: string - ): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.padStart - */ - padStart( - length?: number, - chars?: string - ): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.padStart - */ - padStart( - length?: number, - chars?: string - ): LoDashExplicitWrapper; - } - - //_.parseInt - interface LoDashStatic { - /** - * Converts string to an integer of the specified radix. If radix is undefined or 0, a radix of 10 is used - * unless value is a hexadecimal, in which case a radix of 16 is used. - * - * Note: This method aligns with the ES5 implementation of parseInt. - * - * @param string The string to convert. - * @param radix The radix to interpret value by. - * @return Returns the converted integer. - */ - parseInt( - string: string, - radix?: number - ): number; - } - - interface LoDashImplicitWrapper { - /** - * @see _.parseInt - */ - parseInt(radix?: number): number; - } - - interface LoDashExplicitWrapper { - /** - * @see _.parseInt - */ - parseInt(radix?: number): LoDashExplicitWrapper; - } - - //_.repeat - interface LoDashStatic { - /** - * Repeats the given string n times. - * - * @param string The string to repeat. - * @param n The number of times to repeat the string. - * @return Returns the repeated string. - */ - repeat( - string?: string, - n?: number - ): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.repeat - */ - repeat(n?: number): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.repeat - */ - repeat(n?: number): LoDashExplicitWrapper; - } - - //_.replace - interface LoDashStatic { - /** - * Replaces matches for pattern in string with replacement. - * - * Note: This method is based on String#replace. - * - * @param string - * @param pattern - * @param replacement - * @return Returns the modified string. - */ - replace( - string: string, - pattern: RegExp|string, - replacement: Function|string - ): string; - - /** - * @see _.replace - */ - replace( - pattern?: RegExp|string, - replacement?: Function|string - ): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.replace - */ - replace( - pattern?: RegExp|string, - replacement?: Function|string - ): string; - - /** - * @see _.replace - */ - replace( - replacement?: Function|string - ): string; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.replace - */ - replace( - pattern?: RegExp|string, - replacement?: Function|string - ): string; - - /** - * @see _.replace - */ - replace( - replacement?: Function|string - ): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.replace - */ - replace( - pattern?: RegExp|string, - replacement?: Function|string - ): LoDashExplicitWrapper; - - /** - * @see _.replace - */ - replace( - replacement?: Function|string - ): LoDashExplicitWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.replace - */ - replace( - pattern?: RegExp|string, - replacement?: Function|string - ): LoDashExplicitWrapper; - - /** - * @see _.replace - */ - replace( - replacement?: Function|string - ): LoDashExplicitWrapper; - } - - //_.snakeCase - interface LoDashStatic { - /** - * Converts string to snake case. - * - * @param string The string to convert. - * @return Returns the snake cased string. - */ - snakeCase(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.snakeCase - */ - snakeCase(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.snakeCase - */ - snakeCase(): LoDashExplicitWrapper; - } - - //_.split - interface LoDashStatic { - /** - * Splits string by separator. - * - * Note: This method is based on String#split. - * - * @param string - * @param separator - * @param limit - * @return Returns the new array of string segments. - */ - split( - string: string, - separator?: RegExp|string, - limit?: number - ): string[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.split - */ - split( - separator?: RegExp|string, - limit?: number - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.split - */ - split( - separator?: RegExp|string, - limit?: number - ): LoDashExplicitArrayWrapper; - } - - //_.startCase - interface LoDashStatic { - /** - * Converts string to start case. - * - * @param string The string to convert. - * @return Returns the start cased string. - */ - startCase(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.startCase - */ - startCase(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.startCase - */ - startCase(): LoDashExplicitWrapper; - } - - //_.startsWith - interface LoDashStatic { - /** - * Checks if string starts with the given target string. - * - * @param string The string to search. - * @param target The string to search for. - * @param position The position to search from. - * @return Returns true if string starts with target, else false. - */ - startsWith( - string?: string, - target?: string, - position?: number - ): boolean; - } - - interface LoDashImplicitWrapper { - /** - * @see _.startsWith - */ - startsWith( - target?: string, - position?: number - ): boolean; - } - - interface LoDashExplicitWrapper { - /** - * @see _.startsWith - */ - startsWith( - target?: string, - position?: number - ): LoDashExplicitWrapper; - } - - //_.template - interface TemplateOptions extends TemplateSettings { - /** - * The sourceURL of the template's compiled source. - */ - sourceURL?: string; - } - - interface TemplateExecutor { - (data?: Object): string; - source: string; - } - - interface LoDashStatic { - /** - * Creates a compiled template function that can interpolate data properties in "interpolate" delimiters, - * HTML-escape interpolated data properties in "escape" delimiters, and execute JavaScript in "evaluate" - * delimiters. Data properties may be accessed as free variables in the template. If a setting object is - * provided it takes precedence over _.templateSettings values. - * - * Note: In the development build _.template utilizes - * [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl) for easier - * debugging. - * - * For more information on precompiling templates see - * [lodash's custom builds documentation](https://lodash.com/custom-builds). - * - * For more information on Chrome extension sandboxes see - * [Chrome's extensions documentation](https://developer.chrome.com/extensions/sandboxingEval). - * - * @param string The template string. - * @param options The options object. - * @param options.escape The HTML "escape" delimiter. - * @param options.evaluate The "evaluate" delimiter. - * @param options.imports An object to import into the template as free variables. - * @param options.interpolate The "interpolate" delimiter. - * @param options.sourceURL The sourceURL of the template's compiled source. - * @param options.variable The data object variable name. - * @return Returns the compiled template function. - */ - template( - string: string, - options?: TemplateOptions - ): TemplateExecutor; - } - - interface LoDashImplicitWrapper { - /** - * @see _.template - */ - template(options?: TemplateOptions): TemplateExecutor; - } - - interface LoDashExplicitWrapper { - /** - * @see _.template - */ - template(options?: TemplateOptions): LoDashExplicitObjectWrapper; - } - - //_.toLower - interface LoDashStatic { - /** - * Converts `string`, as a whole, to lower case. - * - * @param string The string to convert. - * @return Returns the lower cased string. - */ - toLower(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.toLower - */ - toLower(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.toLower - */ - toLower(): LoDashExplicitWrapper; - } - - //_.toUpper - interface LoDashStatic { - /** - * Converts `string`, as a whole, to upper case. - * - * @param string The string to convert. - * @return Returns the upper cased string. - */ - toUpper(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.toUpper - */ - toUpper(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.toUpper - */ - toUpper(): LoDashExplicitWrapper; - } - - //_.trim - interface LoDashStatic { - /** - * Removes leading and trailing whitespace or specified characters from string. - * - * @param string The string to trim. - * @param chars The characters to trim. - * @return Returns the trimmed string. - */ - trim( - string?: string, - chars?: string - ): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.trim - */ - trim(chars?: string): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.trim - */ - trim(chars?: string): LoDashExplicitWrapper; - } - - //_.trimEnd - interface LoDashStatic { - /** - * Removes trailing whitespace or specified characters from string. - * - * @param string The string to trim. - * @param chars The characters to trim. - * @return Returns the trimmed string. - */ - trimEnd( - string?: string, - chars?: string - ): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.trimEnd - */ - trimEnd(chars?: string): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.trimEnd - */ - trimEnd(chars?: string): LoDashExplicitWrapper; - } - - //_.trimStart - interface LoDashStatic { - /** - * Removes leading whitespace or specified characters from string. - * - * @param string The string to trim. - * @param chars The characters to trim. - * @return Returns the trimmed string. - */ - trimStart( - string?: string, - chars?: string - ): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.trimStart - */ - trimStart(chars?: string): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.trimStart - */ - trimStart(chars?: string): LoDashExplicitWrapper; - } - - //_.truncate - interface TruncateOptions { - /** The maximum string length. */ - length?: number; - /** The string to indicate text is omitted. */ - omission?: string; - /** The separator pattern to truncate to. */ - separator?: string|RegExp; - } - - interface LoDashStatic { - /** - * Truncates string if it’s longer than the given maximum string length. The last characters of the truncated - * string are replaced with the omission string which defaults to "…". - * - * @param string The string to truncate. - * @param options The options object or maximum string length. - * @return Returns the truncated string. - */ - truncate( - string?: string, - options?: TruncateOptions - ): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.truncate - */ - truncate(options?: TruncateOptions): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.truncate - */ - truncate(options?: TruncateOptions): LoDashExplicitWrapper; - } - - //_.unescape - interface LoDashStatic { - /** - * The inverse of _.escape; this method converts the HTML entities &, <, >, ", ', and ` - * in string to their corresponding characters. - * - * Note: No other HTML entities are unescaped. To unescape additional HTML entities use a third-party library - * like he. - * - * @param string The string to unescape. - * @return Returns the unescaped string. - */ - unescape(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.unescape - */ - unescape(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.unescape - */ - unescape(): LoDashExplicitWrapper; - } - - //_.upperCase - interface LoDashStatic { - /** - * Converts `string`, as space separated words, to upper case. - * - * @param string The string to convert. - * @return Returns the upper cased string. - */ - upperCase(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.upperCase - */ - upperCase(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.upperCase - */ - upperCase(): LoDashExplicitWrapper; - } - - //_.upperFirst - interface LoDashStatic { - /** - * Converts the first character of `string` to upper case. - * - * @param string The string to convert. - * @return Returns the converted string. - */ - upperFirst(string?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.upperFirst - */ - upperFirst(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.upperFirst - */ - upperFirst(): LoDashExplicitWrapper; - } - - //_.words - interface LoDashStatic { - /** - * Splits `string` into an array of its words. - * - * @param string The string to inspect. - * @param pattern The pattern to match words. - * @return Returns the words of `string`. - */ - words( - string?: string, - pattern?: string|RegExp - ): string[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.words - */ - words(pattern?: string|RegExp): string[]; - } - - interface LoDashExplicitWrapper { - /** - * @see _.words - */ - words(pattern?: string|RegExp): LoDashExplicitArrayWrapper; - } - - /*********** - * Utility * - ***********/ - - //_.attempt - interface LoDashStatic { - /** - * Attempts to invoke func, returning either the result or the caught error object. Any additional arguments - * are provided to func when it’s invoked. - * - * @param func The function to attempt. - * @return Returns the func result or error object. - */ - attempt(func: (...args: any[]) => TResult, ...args: any[]): TResult|Error; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.attempt - */ - attempt(...args: any[]): TResult|Error; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.attempt - */ - attempt(...args: any[]): LoDashExplicitObjectWrapper; - } - - //_.constant - interface LoDashStatic { - /** - * Creates a function that returns value. - * - * @param value The value to return from the new function. - * @return Returns the new function. - */ - constant(value: T): () => T; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.constant - */ - constant(): LoDashImplicitObjectWrapper<() => TResult>; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.constant - */ - constant(): LoDashExplicitObjectWrapper<() => TResult>; - } - - //_.identity - interface LoDashStatic { - /** - * This method returns the first argument provided to it. - * - * @param value Any value. - * @return Returns value. - */ - identity(value?: T): T; - } - - interface LoDashImplicitWrapper { - /** - * @see _.identity - */ - identity(): T; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.identity - */ - identity(): T[]; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.identity - */ - identity(): T; - } - - interface LoDashExplicitWrapper { - /** - * @see _.identity - */ - identity(): LoDashExplicitWrapper; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.identity - */ - identity(): LoDashExplicitArrayWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.identity - */ - identity(): LoDashExplicitObjectWrapper; - } - - //_.iteratee - interface LoDashStatic { - /** - * Creates a function that invokes `func` with the arguments of the created - * function. If `func` is a property name the created callback returns the - * property value for a given element. If `func` is an object the created - * callback returns `true` for elements that contain the equivalent object properties, otherwise it returns `false`. - * - * @static - * @memberOf _ - * @category Util - * @param {*} [func=_.identity] The value to convert to a callback. - * @returns {Function} Returns the callback. - * @example - * - * var users = [ - * { 'user': 'barney', 'age': 36 }, - * { 'user': 'fred', 'age': 40 } - * ]; - * - * // create custom iteratee shorthands - * _.iteratee = _.wrap(_.iteratee, function(callback, func) { - * var p = /^(\S+)\s*([<>])\s*(\S+)$/.exec(func); - * return !p ? callback(func) : function(object) { - * return (p[2] == '>' ? object[p[1]] > p[3] : object[p[1]] < p[3]); - * }; - * }); - * - * _.filter(users, 'age > 36'); - * // => [{ 'user': 'fred', 'age': 40 }] - */ - iteratee( - func: Function - ): (...args: any[]) => TResult; - - /** - * @see _.iteratee - */ - iteratee( - func: string - ): (object: any) => TResult; - - /** - * @see _.iteratee - */ - iteratee( - func: Object - ): (object: any) => boolean; - - /** - * @see _.iteratee - */ - iteratee(): (value: TResult) => TResult; - } - - interface LoDashImplicitWrapper { - /** - * @see _.iteratee - */ - iteratee(): LoDashImplicitObjectWrapper<(object: any) => TResult>; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.iteratee - */ - iteratee(): LoDashImplicitObjectWrapper<(object: any) => boolean>; - - /** - * @see _.iteratee - */ - iteratee(): LoDashImplicitObjectWrapper<(...args: any[]) => TResult>; - } - - interface LoDashExplicitWrapper { - /** - * @see _.iteratee - */ - iteratee(): LoDashExplicitObjectWrapper<(object: any) => TResult>; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.iteratee - */ - iteratee(): LoDashExplicitObjectWrapper<(object: any) => boolean>; - - /** - * @see _.iteratee - */ - iteratee(): LoDashExplicitObjectWrapper<(...args: any[]) => TResult>; - } - - //_.matches - interface LoDashStatic { - /** - * Creates a function that performs a deep comparison between a given object and source, returning true if the - * given object has equivalent property values, else false. - * - * Note: This method supports comparing arrays, booleans, Date objects, numbers, Object objects, regexes, and - * strings. Objects are compared by their own, not inherited, enumerable properties. For comparing a single own - * or inherited property value see _.matchesProperty. - * - * @param source The object of property values to match. - * @return Returns the new function. - */ - matches(source: T): (value: any) => boolean; - - /** - * @see _.matches - */ - matches(source: T): (value: V) => boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.matches - */ - matches(): LoDashImplicitObjectWrapper<(value: V) => boolean>; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.matches - */ - matches(): LoDashExplicitObjectWrapper<(value: V) => boolean>; - } - - //_.matchesProperty - interface LoDashStatic { - /** - * Creates a function that compares the property value of path on a given object to value. - * - * Note: This method supports comparing arrays, booleans, Date objects, numbers, Object objects, regexes, and - * strings. Objects are compared by their own, not inherited, enumerable properties. - * - * @param path The path of the property to get. - * @param srcValue The value to match. - * @return Returns the new function. - */ - matchesProperty( - path: StringRepresentable|StringRepresentable[], - srcValue: T - ): (value: any) => boolean; - - /** - * @see _.matchesProperty - */ - matchesProperty( - path: StringRepresentable|StringRepresentable[], - srcValue: T - ): (value: V) => boolean; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.matchesProperty - */ - matchesProperty( - srcValue: SrcValue - ): LoDashImplicitObjectWrapper<(value: any) => boolean>; - - /** - * @see _.matchesProperty - */ - matchesProperty( - srcValue: SrcValue - ): LoDashImplicitObjectWrapper<(value: Value) => boolean>; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.matchesProperty - */ - matchesProperty( - srcValue: SrcValue - ): LoDashExplicitObjectWrapper<(value: any) => boolean>; - - /** - * @see _.matchesProperty - */ - matchesProperty( - srcValue: SrcValue - ): LoDashExplicitObjectWrapper<(value: Value) => boolean>; - } - - //_.method - interface LoDashStatic { - /** - * Creates a function that invokes the method at path on a given object. Any additional arguments are provided - * to the invoked method. - * - * @param path The path of the method to invoke. - * @param args The arguments to invoke the method with. - * @return Returns the new function. - */ - method( - path: string|StringRepresentable[], - ...args: any[] - ): (object: TObject) => TResult; - - /** - * @see _.method - */ - method( - path: string|StringRepresentable[], - ...args: any[] - ): (object: any) => TResult; - } - - interface LoDashImplicitWrapper { - /** - * @see _.method - */ - method(...args: any[]): LoDashImplicitObjectWrapper<(object: TObject) => TResult>; - - /** - * @see _.method - */ - method(...args: any[]): LoDashImplicitObjectWrapper<(object: any) => TResult>; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.method - */ - method(...args: any[]): LoDashImplicitObjectWrapper<(object: TObject) => TResult>; - - /** - * @see _.method - */ - method(...args: any[]): LoDashImplicitObjectWrapper<(object: any) => TResult>; - } - - interface LoDashExplicitWrapper { - /** - * @see _.method - */ - method(...args: any[]): LoDashExplicitObjectWrapper<(object: TObject) => TResult>; - - /** - * @see _.method - */ - method(...args: any[]): LoDashExplicitObjectWrapper<(object: any) => TResult>; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.method - */ - method(...args: any[]): LoDashExplicitObjectWrapper<(object: TObject) => TResult>; - - /** - * @see _.method - */ - method(...args: any[]): LoDashExplicitObjectWrapper<(object: any) => TResult>; - } - - //_.methodOf - interface LoDashStatic { - /** - * The opposite of _.method; this method creates a function that invokes the method at a given path on object. - * Any additional arguments are provided to the invoked method. - * - * @param object The object to query. - * @param args The arguments to invoke the method with. - * @return Returns the new function. - */ - methodOf( - object: TObject, - ...args: any[] - ): (path: StringRepresentable|StringRepresentable[]) => TResult; - - /** - * @see _.methodOf - */ - methodOf( - object: {}, - ...args: any[] - ): (path: StringRepresentable|StringRepresentable[]) => TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.methodOf - */ - methodOf( - ...args: any[] - ): LoDashImplicitObjectWrapper<(path: StringRepresentable|StringRepresentable[]) => TResult>; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.methodOf - */ - methodOf( - ...args: any[] - ): LoDashExplicitObjectWrapper<(path: StringRepresentable|StringRepresentable[]) => TResult>; - } - - //_.mixin - interface MixinOptions { - chain?: boolean; - } - - interface LoDashStatic { - /** - * Adds all own enumerable function properties of a source object to the destination object. If object is a - * function then methods are added to its prototype as well. - * - * Note: Use _.runInContext to create a pristine lodash function to avoid conflicts caused by modifying - * the original. - * - * @param object The destination object. - * @param source The object of functions to add. - * @param options The options object. - * @param options.chain Specify whether the functions added are chainable. - * @return Returns object. - */ - mixin( - object: TObject, - source: Dictionary, - options?: MixinOptions - ): TResult; - - /** - * @see _.mixin - */ - mixin( - source: Dictionary, - options?: MixinOptions - ): TResult; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.mixin - */ - mixin( - source: Dictionary, - options?: MixinOptions - ): LoDashImplicitObjectWrapper; - - /** - * @see _.mixin - */ - mixin( - options?: MixinOptions - ): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.mixin - */ - mixin( - source: Dictionary, - options?: MixinOptions - ): LoDashExplicitObjectWrapper; - - /** - * @see _.mixin - */ - mixin( - options?: MixinOptions - ): LoDashExplicitObjectWrapper; - } - - //_.noConflict - interface LoDashStatic { - /** - * Reverts the _ variable to its previous value and returns a reference to the lodash function. - * - * @return Returns the lodash function. - */ - noConflict(): typeof _; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.noConflict - */ - noConflict(): typeof _; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.noConflict - */ - noConflict(): LoDashExplicitObjectWrapper; - } - - //_.noop - interface LoDashStatic { - /** - * A no-operation function that returns undefined regardless of the arguments it receives. - * - * @return undefined - */ - noop(...args: any[]): void; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.noop - */ - noop(...args: any[]): void; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.noop - */ - noop(...args: any[]): _.LoDashExplicitWrapper; - } - - //_.nthArg - interface LoDashStatic { - /** - * Creates a function that returns its nth argument. - * - * @param n The index of the argument to return. - * @return Returns the new function. - */ - nthArg(n?: number): TResult; - } - - interface LoDashImplicitWrapper { - /** - * @see _.nthArg - */ - nthArg(): LoDashImplicitObjectWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.nthArg - */ - nthArg(): LoDashExplicitObjectWrapper; - } - - //_.over - interface LoDashStatic { - /** - * Creates a function that invokes iteratees with the arguments provided to the created function and returns - * their results. - * - * @param iteratees The iteratees to invoke. - * @return Returns the new function. - */ - over(...iteratees: (Function|Function[])[]): (...args: any[]) => TResult[]; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.over - */ - over(...iteratees: (Function|Function[])[]): LoDashImplicitObjectWrapper<(...args: any[]) => TResult[]>; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.over - */ - over(...iteratees: (Function|Function[])[]): LoDashImplicitObjectWrapper<(...args: any[]) => TResult[]>; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.over - */ - over(...iteratees: (Function|Function[])[]): LoDashExplicitObjectWrapper<(...args: any[]) => TResult[]>; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.over - */ - over(...iteratees: (Function|Function[])[]): LoDashExplicitObjectWrapper<(...args: any[]) => TResult[]>; - } - - //_.overEvery - interface LoDashStatic { - /** - * Creates a function that checks if all of the predicates return truthy when invoked with the arguments - * provided to the created function. - * - * @param predicates The predicates to check. - * @return Returns the new function. - */ - overEvery(...predicates: (Function|Function[])[]): (...args: any[]) => boolean; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.overEvery - */ - overEvery(...predicates: (Function|Function[])[]): LoDashImplicitObjectWrapper<(...args: any[]) => boolean>; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.overEvery - */ - overEvery(...predicates: (Function|Function[])[]): LoDashImplicitObjectWrapper<(...args: any[]) => boolean>; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.overEvery - */ - overEvery(...predicates: (Function|Function[])[]): LoDashExplicitObjectWrapper<(...args: any[]) => boolean>; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.overEvery - */ - overEvery(...predicates: (Function|Function[])[]): LoDashExplicitObjectWrapper<(...args: any[]) => boolean>; - } - - //_.overSome - interface LoDashStatic { - /** - * Creates a function that checks if any of the predicates return truthy when invoked with the arguments - * provided to the created function. - * - * @param predicates The predicates to check. - * @return Returns the new function. - */ - overSome(...predicates: (Function|Function[])[]): (...args: any[]) => boolean; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.overSome - */ - overSome(...predicates: (Function|Function[])[]): LoDashImplicitObjectWrapper<(...args: any[]) => boolean>; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.overSome - */ - overSome(...predicates: (Function|Function[])[]): LoDashImplicitObjectWrapper<(...args: any[]) => boolean>; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.overSome - */ - overSome(...predicates: (Function|Function[])[]): LoDashExplicitObjectWrapper<(...args: any[]) => boolean>; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.overSome - */ - overSome(...predicates: (Function|Function[])[]): LoDashExplicitObjectWrapper<(...args: any[]) => boolean>; - } - - //_.property - interface LoDashStatic { - /** - * Creates a function that returns the property value at path on a given object. - * - * @param path The path of the property to get. - * @return Returns the new function. - */ - property(path: StringRepresentable|StringRepresentable[]): (obj: TObj) => TResult; - } - - interface LoDashImplicitWrapper { - /** - * @see _.property - */ - property(): LoDashImplicitObjectWrapper<(obj: TObj) => TResult>; - } - - interface LoDashImplicitArrayWrapper { - /** - * @see _.property - */ - property(): LoDashImplicitObjectWrapper<(obj: TObj) => TResult>; - } - - interface LoDashExplicitWrapper { - /** - * @see _.property - */ - property(): LoDashExplicitObjectWrapper<(obj: TObj) => TResult>; - } - - interface LoDashExplicitArrayWrapper { - /** - * @see _.property - */ - property(): LoDashExplicitObjectWrapper<(obj: TObj) => TResult>; - } - - //_.propertyOf - interface LoDashStatic { - /** - * The opposite of _.property; this method creates a function that returns the property value at a given path - * on object. - * - * @param object The object to query. - * @return Returns the new function. - */ - propertyOf(object: T): (path: string|string[]) => any; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.propertyOf - */ - propertyOf(): LoDashImplicitObjectWrapper<(path: string|string[]) => any>; - } - - interface LoDashExplicitObjectWrapper { - /** - * @see _.propertyOf - */ - propertyOf(): LoDashExplicitObjectWrapper<(path: string|string[]) => any>; - } - - //_.range - interface LoDashStatic { - /** - * Creates an array of numbers (positive and/or negative) progressing from start up to, but not including, end. - * If end is not specified it’s set to start with start then set to 0. If end is less than start a zero-length - * range is created unless a negative step is specified. - * - * @param start The start of the range. - * @param end The end of the range. - * @param step The value to increment or decrement by. - * @return Returns a new range array. - */ - range( - start: number, - end: number, - step?: number - ): number[]; - - /** - * @see _.range - */ - range( - end: number, - step?: number - ): number[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.range - */ - range( - end?: number, - step?: number - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.range - */ - range( - end?: number, - step?: number - ): LoDashExplicitArrayWrapper; - } - - //_.rangeRight - interface LoDashStatic { - /** - * This method is like `_.range` except that it populates values in - * descending order. - * - * @static - * @memberOf _ - * @category Util - * @param {number} [start=0] The start of the range. - * @param {number} end The end of the range. - * @param {number} [step=1] The value to increment or decrement by. - * @returns {Array} Returns the new array of numbers. - * @example - * - * _.rangeRight(4); - * // => [3, 2, 1, 0] - * - * _.rangeRight(-4); - * // => [-3, -2, -1, 0] - * - * _.rangeRight(1, 5); - * // => [4, 3, 2, 1] - * - * _.rangeRight(0, 20, 5); - * // => [15, 10, 5, 0] - * - * _.rangeRight(0, -4, -1); - * // => [-3, -2, -1, 0] - * - * _.rangeRight(1, 4, 0); - * // => [1, 1, 1] - * - * _.rangeRight(0); - * // => [] - */ - rangeRight( - start: number, - end: number, - step?: number - ): number[]; - - /** - * @see _.rangeRight - */ - rangeRight( - end: number, - step?: number - ): number[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.rangeRight - */ - rangeRight( - end?: number, - step?: number - ): LoDashImplicitArrayWrapper; - } - - interface LoDashExplicitWrapper { - /** - * @see _.rangeRight - */ - rangeRight( - end?: number, - step?: number - ): LoDashExplicitArrayWrapper; - } - - //_.runInContext - interface LoDashStatic { - /** - * Create a new pristine lodash function using the given context object. - * - * @param context The context object. - * @return Returns a new lodash function. - */ - runInContext(context?: Object): typeof _; - } - - interface LoDashImplicitObjectWrapper { - /** - * @see _.runInContext - */ - runInContext(): typeof _; - } - - //_.times - interface LoDashStatic { - /** - * Invokes the iteratee function n times, returning an array of the results of each invocation. The iteratee - * is invoked with one argument; (index). - * - * @param n The number of times to invoke iteratee. - * @param iteratee The function invoked per iteration. - * @return Returns the array of results. - */ - times( - n: number, - iteratee: (num: number) => TResult - ): TResult[]; - - /** - * @see _.times - */ - times(n: number): number[]; - } - - interface LoDashImplicitWrapper { - /** - * @see _.times - */ - times( - iteratee: (num: number) => TResult - ): TResult[]; - - /** - * @see _.times - */ - times(): number[]; - } - - interface LoDashExplicitWrapper { - /** - * @see _.times - */ - times( - iteratee: (num: number) => TResult - ): LoDashExplicitArrayWrapper; - - /** - * @see _.times - */ - times(): LoDashExplicitArrayWrapper; - } - - //_.toPath - interface LoDashStatic { - /** - * Converts `value` to a property path array. - * - * @static - * @memberOf _ - * @category Util - * @param {*} value The value to convert. - * @returns {Array} Returns the new property path array. - * @example - * - * _.toPath('a.b.c'); - * // => ['a', 'b', 'c'] - * - * _.toPath('a[0].b.c'); - * // => ['a', '0', 'b', 'c'] - * - * var path = ['a', 'b', 'c'], - * newPath = _.toPath(path); - * - * console.log(newPath); - * // => ['a', 'b', 'c'] - * - * console.log(path === newPath); - * // => false - */ - toPath(value: any): string[]; - } - - interface LoDashImplicitWrapperBase { - /** - * @see _.toPath - */ - toPath(): LoDashImplicitWrapper; - } - - interface LoDashExplicitWrapperBase { - /** - * @see _.toPath - */ - toPath(): LoDashExplicitWrapper; - } - - //_.uniqueId - interface LoDashStatic { - /** - * Generates a unique ID. If prefix is provided the ID is appended to it. - * - * @param prefix The value to prefix the ID with. - * @return Returns the unique ID. - */ - uniqueId(prefix?: string): string; - } - - interface LoDashImplicitWrapper { - /** - * @see _.uniqueId - */ - uniqueId(): string; - } - - interface LoDashExplicitWrapper { - /** - * @see _.uniqueId - */ - uniqueId(): LoDashExplicitWrapper; - } - - interface ListIterator { - (value: T, index: number, collection: List): TResult; - } - - interface DictionaryIterator { - (value: T, key?: string, collection?: Dictionary): TResult; - } - - interface NumericDictionaryIterator { - (value: T, key?: number, collection?: Dictionary): TResult; - } - - interface ObjectIterator { - (element: T, key?: string, collection?: any): TResult; - } - - interface StringIterator { - (char: string, index?: number, string?: string): TResult; - } - - interface MemoVoidIterator { - (prev: TResult, curr: T, indexOrKey?: any, list?: T[]): void; - } - interface MemoIterator { - (prev: TResult, curr: T, indexOrKey?: any, list?: T[]): TResult; - } - - interface MemoVoidArrayIterator { - (acc: TResult, curr: T, index?: number, arr?: T[]): void; - } - interface MemoVoidDictionaryIterator { - (acc: TResult, curr: T, key?: string, dict?: Dictionary): void; - } - - //interface Collection {} - - // Common interface between Arrays and jQuery objects - interface List { - [index: number]: T; - length: number; - } - - interface Dictionary { - [index: string]: T; - } - - interface NumericDictionary { - [index: number]: T; - } - - interface StringRepresentable { - toString(): string; - } - - interface Cancelable { - cancel(): void; - } -} - -// Named exports - -declare module "lodash/after" { - const after: typeof _.after; - export = after; -} - - -declare module "lodash/ary" { - const ary: typeof _.ary; - export = ary; -} - - -declare module "lodash/assign" { - const assign: typeof _.assign; - export = assign; -} - - -declare module "lodash/assignIn" { - const assignIn: typeof _.assignIn; - export = assignIn; -} - - -declare module "lodash/assignInWith" { - const assignInWith: typeof _.assignInWith; - export = assignInWith; -} - - -declare module "lodash/assignWith" { - const assignWith: typeof _.assignWith; - export = assignWith; -} - - -declare module "lodash/at" { - const at: typeof _.at; - export = at; -} - - -declare module "lodash/before" { - const before: typeof _.before; - export = before; -} - - -declare module "lodash/bind" { - const bind: typeof _.bind; - export = bind; -} - - -declare module "lodash/bindAll" { - const bindAll: typeof _.bindAll; - export = bindAll; -} - - -declare module "lodash/bindKey" { - const bindKey: typeof _.bindKey; - export = bindKey; -} - - -declare module "lodash/castArray" { - const castArray: typeof _.castArray; - export = castArray; -} - - -declare module "lodash/chain" { - const chain: typeof _.chain; - export = chain; -} - - -declare module "lodash/chunk" { - const chunk: typeof _.chunk; - export = chunk; -} - - -declare module "lodash/compact" { - const compact: typeof _.compact; - export = compact; -} - - -declare module "lodash/concat" { - const concat: typeof _.concat; - export = concat; -} - -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/cond" { - const cond: typeof _.cond; - export = cond; -} -*/ - -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/conforms" { - const conforms: typeof _.conforms; - export = conforms; -} -*/ - -declare module "lodash/constant" { - const constant: typeof _.constant; - export = constant; -} - - -declare module "lodash/countBy" { - const countBy: typeof _.countBy; - export = countBy; -} - - -declare module "lodash/create" { - const create: typeof _.create; - export = create; -} - - -declare module "lodash/curry" { - const curry: typeof _.curry; - export = curry; -} - - -declare module "lodash/curryRight" { - const curryRight: typeof _.curryRight; - export = curryRight; -} - - -declare module "lodash/debounce" { - const debounce: typeof _.debounce; - export = debounce; -} - - -declare module "lodash/defaults" { - const defaults: typeof _.defaults; - export = defaults; -} - - -declare module "lodash/defaultsDeep" { - const defaultsDeep: typeof _.defaultsDeep; - export = defaultsDeep; -} - - -declare module "lodash/defer" { - const defer: typeof _.defer; - export = defer; -} - - -declare module "lodash/delay" { - const delay: typeof _.delay; - export = delay; -} - - -declare module "lodash/difference" { - const difference: typeof _.difference; - export = difference; -} - - -declare module "lodash/differenceBy" { - const differenceBy: typeof _.differenceBy; - export = differenceBy; -} - - -declare module "lodash/differenceWith" { - const differenceWith: typeof _.differenceWith; - export = differenceWith; -} - - -declare module "lodash/drop" { - const drop: typeof _.drop; - export = drop; -} - - -declare module "lodash/dropRight" { - const dropRight: typeof _.dropRight; - export = dropRight; -} - - -declare module "lodash/dropRightWhile" { - const dropRightWhile: typeof _.dropRightWhile; - export = dropRightWhile; -} - - -declare module "lodash/dropWhile" { - const dropWhile: typeof _.dropWhile; - export = dropWhile; -} - - -declare module "lodash/fill" { - const fill: typeof _.fill; - export = fill; -} - - -declare module "lodash/filter" { - const filter: typeof _.filter; - export = filter; -} - - -declare module "lodash/flatMap" { - const flatMap: typeof _.flatMap; - export = flatMap; -} - -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/flatMapDeep" { - const flatMapDeep: typeof _.flatMapDeep; - export = flatMapDeep; -} -*/ -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/flatMapDepth" { - const flatMapDepth: typeof _.flatMapDepth; - export = flatMapDepth; -} -*/ - -declare module "lodash/flatten" { - const flatten: typeof _.flatten; - export = flatten; -} - - -declare module "lodash/flattenDeep" { - const flattenDeep: typeof _.flattenDeep; - export = flattenDeep; -} - -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/flattenDepth" { - const flattenDepth: typeof _.flattenDepth; - export = flattenDepth; -} -*/ - -declare module "lodash/flip" { - const flip: typeof _.flip; - export = flip; -} - - -declare module "lodash/flow" { - const flow: typeof _.flow; - export = flow; -} - - -declare module "lodash/flowRight" { - const flowRight: typeof _.flowRight; - export = flowRight; -} - - -declare module "lodash/fromPairs" { - const fromPairs: typeof _.fromPairs; - export = fromPairs; -} - - -declare module "lodash/functions" { - const functions: typeof _.functions; - export = functions; -} - - -declare module "lodash/functionsIn" { - const functionsIn: typeof _.functionsIn; - export = functionsIn; -} - - -declare module "lodash/groupBy" { - const groupBy: typeof _.groupBy; - export = groupBy; -} - - -declare module "lodash/initial" { - const initial: typeof _.initial; - export = initial; -} - - -declare module "lodash/intersection" { - const intersection: typeof _.intersection; - export = intersection; -} - - -declare module "lodash/intersectionBy" { - const intersectionBy: typeof _.intersectionBy; - export = intersectionBy; -} - - -declare module "lodash/intersectionWith" { - const intersectionWith: typeof _.intersectionWith; - export = intersectionWith; -} - - -declare module "lodash/invert" { - const invert: typeof _.invert; - export = invert; -} - - -declare module "lodash/invertBy" { - const invertBy: typeof _.invertBy; - export = invertBy; -} - - -declare module "lodash/invokeMap" { - const invokeMap: typeof _.invokeMap; - export = invokeMap; -} - - -declare module "lodash/iteratee" { - const iteratee: typeof _.iteratee; - export = iteratee; -} - - -declare module "lodash/keyBy" { - const keyBy: typeof _.keyBy; - export = keyBy; -} - - -declare module "lodash/keys" { - const keys: typeof _.keys; - export = keys; -} - - -declare module "lodash/keysIn" { - const keysIn: typeof _.keysIn; - export = keysIn; -} - - -declare module "lodash/map" { - const map: typeof _.map; - export = map; -} - - -declare module "lodash/mapKeys" { - const mapKeys: typeof _.mapKeys; - export = mapKeys; -} - - -declare module "lodash/mapValues" { - const mapValues: typeof _.mapValues; - export = mapValues; -} - - -declare module "lodash/matches" { - const matches: typeof _.matches; - export = matches; -} - - -declare module "lodash/matchesProperty" { - const matchesProperty: typeof _.matchesProperty; - export = matchesProperty; -} - - -declare module "lodash/memoize" { - const memoize: typeof _.memoize; - export = memoize; -} - - -declare module "lodash/merge" { - const merge: typeof _.merge; - export = merge; -} - - -declare module "lodash/mergeWith" { - const mergeWith: typeof _.mergeWith; - export = mergeWith; -} - - -declare module "lodash/method" { - const method: typeof _.method; - export = method; -} - - -declare module "lodash/methodOf" { - const methodOf: typeof _.methodOf; - export = methodOf; -} - - -declare module "lodash/mixin" { - const mixin: typeof _.mixin; - export = mixin; -} - - -declare module "lodash/negate" { - const negate: typeof _.negate; - export = negate; -} - - -declare module "lodash/nthArg" { - const nthArg: typeof _.nthArg; - export = nthArg; -} - - -declare module "lodash/omit" { - const omit: typeof _.omit; - export = omit; -} - - -declare module "lodash/omitBy" { - const omitBy: typeof _.omitBy; - export = omitBy; -} - - -declare module "lodash/once" { - const once: typeof _.once; - export = once; -} - - -declare module "lodash/orderBy" { - const orderBy: typeof _.orderBy; - export = orderBy; -} - - -declare module "lodash/over" { - const over: typeof _.over; - export = over; -} - - -declare module "lodash/overArgs" { - const overArgs: typeof _.overArgs; - export = overArgs; -} - - -declare module "lodash/overEvery" { - const overEvery: typeof _.overEvery; - export = overEvery; -} - - -declare module "lodash/overSome" { - const overSome: typeof _.overSome; - export = overSome; -} - - -declare module "lodash/partial" { - const partial: typeof _.partial; - export = partial; -} - - -declare module "lodash/partialRight" { - const partialRight: typeof _.partialRight; - export = partialRight; -} - - -declare module "lodash/partition" { - const partition: typeof _.partition; - export = partition; -} - - -declare module "lodash/pick" { - const pick: typeof _.pick; - export = pick; -} - - -declare module "lodash/pickBy" { - const pickBy: typeof _.pickBy; - export = pickBy; -} - - -declare module "lodash/property" { - const property: typeof _.property; - export = property; -} - - -declare module "lodash/propertyOf" { - const propertyOf: typeof _.propertyOf; - export = propertyOf; -} - - -declare module "lodash/pull" { - const pull: typeof _.pull; - export = pull; -} - - -declare module "lodash/pullAll" { - const pullAll: typeof _.pullAll; - export = pullAll; -} - - -declare module "lodash/pullAllBy" { - const pullAllBy: typeof _.pullAllBy; - export = pullAllBy; -} - -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/pullAllWith" { - const pullAllWith: typeof _.pullAllWith; - export = pullAllWith; -} -*/ - -declare module "lodash/pullAt" { - const pullAt: typeof _.pullAt; - export = pullAt; -} - - -declare module "lodash/range" { - const range: typeof _.range; - export = range; -} - - -declare module "lodash/rangeRight" { - const rangeRight: typeof _.rangeRight; - export = rangeRight; -} - - -declare module "lodash/rearg" { - const rearg: typeof _.rearg; - export = rearg; -} - - -declare module "lodash/reject" { - const reject: typeof _.reject; - export = reject; -} - - -declare module "lodash/remove" { - const remove: typeof _.remove; - export = remove; -} - - -declare module "lodash/rest" { - const rest: typeof _.rest; - export = rest; -} - - -declare module "lodash/reverse" { - const reverse: typeof _.reverse; - export = reverse; -} - - -declare module "lodash/sampleSize" { - const sampleSize: typeof _.sampleSize; - export = sampleSize; -} - - -declare module "lodash/set" { - const set: typeof _.set; - export = set; -} - - -declare module "lodash/setWith" { - const setWith: typeof _.setWith; - export = setWith; -} - - -declare module "lodash/shuffle" { - const shuffle: typeof _.shuffle; - export = shuffle; -} - - -declare module "lodash/slice" { - const slice: typeof _.slice; - export = slice; -} - - -declare module "lodash/sortBy" { - const sortBy: typeof _.sortBy; - export = sortBy; -} - - -declare module "lodash/sortedUniq" { - const sortedUniq: typeof _.sortedUniq; - export = sortedUniq; -} - - -declare module "lodash/sortedUniqBy" { - const sortedUniqBy: typeof _.sortedUniqBy; - export = sortedUniqBy; -} - - -declare module "lodash/split" { - const split: typeof _.split; - export = split; -} - - -declare module "lodash/spread" { - const spread: typeof _.spread; - export = spread; -} - - -declare module "lodash/tail" { - const tail: typeof _.tail; - export = tail; -} - - -declare module "lodash/take" { - const take: typeof _.take; - export = take; -} - - -declare module "lodash/takeRight" { - const takeRight: typeof _.takeRight; - export = takeRight; -} - - -declare module "lodash/takeRightWhile" { - const takeRightWhile: typeof _.takeRightWhile; - export = takeRightWhile; -} - - -declare module "lodash/takeWhile" { - const takeWhile: typeof _.takeWhile; - export = takeWhile; -} - - -declare module "lodash/tap" { - const tap: typeof _.tap; - export = tap; -} - - -declare module "lodash/throttle" { - const throttle: typeof _.throttle; - export = throttle; -} - - -declare module "lodash/thru" { - const thru: typeof _.thru; - export = thru; -} - - -declare module "lodash/toArray" { - const toArray: typeof _.toArray; - export = toArray; -} - - -declare module "lodash/toPairs" { - const toPairs: typeof _.toPairs; - export = toPairs; -} - - -declare module "lodash/toPairsIn" { - const toPairsIn: typeof _.toPairsIn; - export = toPairsIn; -} - - -declare module "lodash/toPath" { - const toPath: typeof _.toPath; - export = toPath; -} - - -declare module "lodash/toPlainObject" { - const toPlainObject: typeof _.toPlainObject; - export = toPlainObject; -} - - -declare module "lodash/transform" { - const transform: typeof _.transform; - export = transform; -} - - -declare module "lodash/unary" { - const unary: typeof _.unary; - export = unary; -} - - -declare module "lodash/union" { - const union: typeof _.union; - export = union; -} - - -declare module "lodash/unionBy" { - const unionBy: typeof _.unionBy; - export = unionBy; -} - - -declare module "lodash/unionWith" { - const unionWith: typeof _.unionWith; - export = unionWith; -} - - -declare module "lodash/uniq" { - const uniq: typeof _.uniq; - export = uniq; -} - - -declare module "lodash/uniqBy" { - const uniqBy: typeof _.uniqBy; - export = uniqBy; -} - - -declare module "lodash/uniqWith" { - const uniqWith: typeof _.uniqWith; - export = uniqWith; -} - - -declare module "lodash/unset" { - const unset: typeof _.unset; - export = unset; -} - - -declare module "lodash/unzip" { - const unzip: typeof _.unzip; - export = unzip; -} - - -declare module "lodash/unzipWith" { - const unzipWith: typeof _.unzipWith; - export = unzipWith; -} - - -declare module "lodash/update" { - const update: typeof _.update; - export = update; -} - -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/updateWith" { - const updateWith: typeof _.updateWith; - export = updateWith; -} -*/ - -declare module "lodash/values" { - const values: typeof _.values; - export = values; -} - - -declare module "lodash/valuesIn" { - const valuesIn: typeof _.valuesIn; - export = valuesIn; -} - - -declare module "lodash/without" { - const without: typeof _.without; - export = without; -} - - -declare module "lodash/words" { - const words: typeof _.words; - export = words; -} - - -declare module "lodash/wrap" { - const wrap: typeof _.wrap; - export = wrap; -} - - -declare module "lodash/xor" { - const xor: typeof _.xor; - export = xor; -} - - -declare module "lodash/xorBy" { - const xorBy: typeof _.xorBy; - export = xorBy; -} - - -declare module "lodash/xorWith" { - const xorWith: typeof _.xorWith; - export = xorWith; -} - - -declare module "lodash/zip" { - const zip: typeof _.zip; - export = zip; -} - - -declare module "lodash/zipObject" { - const zipObject: typeof _.zipObject; - export = zipObject; -} - -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/zipObjectDeep" { - const zipObjectDeep: typeof _.zipObjectDeep; - export = zipObjectDeep; -} -*/ - - -declare module "lodash/zipWith" { - const zipWith: typeof _.zipWith; - export = zipWith; -} - -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/entries" { - const entries: typeof _.entries; - export = entries; -} -*/ -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/entriesIn" { - const entriesIn: typeof _.entriesIn; - export = entriesIn; -} -*/ - - -declare module "lodash/extend" { - const extend: typeof _.extend; - export = extend; -} - -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/extendWith" { - const extendWith: typeof _.extendWith; - export = extendWith; -} -*/ - -declare module "lodash/add" { - const add: typeof _.add; - export = add; -} - - -declare module "lodash/attempt" { - const attempt: typeof _.attempt; - export = attempt; -} - - -declare module "lodash/camelCase" { - const camelCase: typeof _.camelCase; - export = camelCase; -} - - -declare module "lodash/capitalize" { - const capitalize: typeof _.capitalize; - export = capitalize; -} - - -declare module "lodash/ceil" { - const ceil: typeof _.ceil; - export = ceil; -} - - -declare module "lodash/clamp" { - const clamp: typeof _.clamp; - export = clamp; -} - - -declare module "lodash/clone" { - const clone: typeof _.clone; - export = clone; -} - - -declare module "lodash/cloneDeep" { - const cloneDeep: typeof _.cloneDeep; - export = cloneDeep; -} - - -declare module "lodash/cloneDeepWith" { - const cloneDeepWith: typeof _.cloneDeepWith; - export = cloneDeepWith; -} - - -declare module "lodash/cloneWith" { - const cloneWith: typeof _.cloneWith; - export = cloneWith; -} - - -declare module "lodash/deburr" { - const deburr: typeof _.deburr; - export = deburr; -} - -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/divide" { - const divide: typeof _.divide; - export = divide; -} -*/ - -declare module "lodash/endsWith" { - const endsWith: typeof _.endsWith; - export = endsWith; -} - - -declare module "lodash/eq" { - const eq: typeof _.eq; - export = eq; -} - - -declare module "lodash/escape" { - const escape: typeof _.escape; - export = escape; -} - - -declare module "lodash/escapeRegExp" { - const escapeRegExp: typeof _.escapeRegExp; - export = escapeRegExp; -} - - -declare module "lodash/every" { - const every: typeof _.every; - export = every; -} - - -declare module "lodash/find" { - const find: typeof _.find; - export = find; -} - - -declare module "lodash/findIndex" { - const findIndex: typeof _.findIndex; - export = findIndex; -} - - -declare module "lodash/findKey" { - const findKey: typeof _.findKey; - export = findKey; -} - - -declare module "lodash/findLast" { - const findLast: typeof _.findLast; - export = findLast; -} - - -declare module "lodash/findLastIndex" { - const findLastIndex: typeof _.findLastIndex; - export = findLastIndex; -} - - -declare module "lodash/findLastKey" { - const findLastKey: typeof _.findLastKey; - export = findLastKey; -} - - -declare module "lodash/floor" { - const floor: typeof _.floor; - export = floor; -} - - -declare module "lodash/forEach" { - const forEach: typeof _.forEach; - export = forEach; -} - - -declare module "lodash/forEachRight" { - const forEachRight: typeof _.forEachRight; - export = forEachRight; -} - - -declare module "lodash/forIn" { - const forIn: typeof _.forIn; - export = forIn; -} - - -declare module "lodash/forInRight" { - const forInRight: typeof _.forInRight; - export = forInRight; -} - - -declare module "lodash/forOwn" { - const forOwn: typeof _.forOwn; - export = forOwn; -} - - -declare module "lodash/forOwnRight" { - const forOwnRight: typeof _.forOwnRight; - export = forOwnRight; -} - - -declare module "lodash/get" { - const get: typeof _.get; - export = get; -} - - -declare module "lodash/gt" { - const gt: typeof _.gt; - export = gt; -} - - -declare module "lodash/gte" { - const gte: typeof _.gte; - export = gte; -} - - -declare module "lodash/has" { - const has: typeof _.has; - export = has; -} - - -declare module "lodash/hasIn" { - const hasIn: typeof _.hasIn; - export = hasIn; -} - - -declare module "lodash/head" { - const head: typeof _.head; - export = head; -} - - -declare module "lodash/identity" { - const identity: typeof _.identity; - export = identity; -} - - -declare module "lodash/includes" { - const includes: typeof _.includes; - export = includes; -} - - -declare module "lodash/indexOf" { - const indexOf: typeof _.indexOf; - export = indexOf; -} - - -declare module "lodash/inRange" { - const inRange: typeof _.inRange; - export = inRange; -} - - -declare module "lodash/invoke" { - const invoke: typeof _.invoke; - export = invoke; -} - - -declare module "lodash/isArguments" { - const isArguments: typeof _.isArguments; - export = isArguments; -} - - -declare module "lodash/isArray" { - const isArray: typeof _.isArray; - export = isArray; -} - - -declare module "lodash/isArrayBuffer" { - const isArrayBuffer: typeof _.isArrayBuffer; - export = isArrayBuffer; -} - - -declare module "lodash/isArrayLike" { - const isArrayLike: typeof _.isArrayLike; - export = isArrayLike; -} - - -declare module "lodash/isArrayLikeObject" { - const isArrayLikeObject: typeof _.isArrayLikeObject; - export = isArrayLikeObject; -} - - -declare module "lodash/isBoolean" { - const isBoolean: typeof _.isBoolean; - export = isBoolean; -} - - -declare module "lodash/isBuffer" { - const isBuffer: typeof _.isBuffer; - export = isBuffer; -} - - -declare module "lodash/isDate" { - const isDate: typeof _.isDate; - export = isDate; -} - - -declare module "lodash/isElement" { - const isElement: typeof _.isElement; - export = isElement; -} - - -declare module "lodash/isEmpty" { - const isEmpty: typeof _.isEmpty; - export = isEmpty; -} - - -declare module "lodash/isEqual" { - const isEqual: typeof _.isEqual; - export = isEqual; -} - - -declare module "lodash/isEqualWith" { - const isEqualWith: typeof _.isEqualWith; - export = isEqualWith; -} - - -declare module "lodash/isError" { - const isError: typeof _.isError; - export = isError; -} - - -declare module "lodash/isFinite" { - const isFinite: typeof _.isFinite; - export = isFinite; -} - - -declare module "lodash/isFunction" { - const isFunction: typeof _.isFunction; - export = isFunction; -} - - -declare module "lodash/isInteger" { - const isInteger: typeof _.isInteger; - export = isInteger; -} - - -declare module "lodash/isLength" { - const isLength: typeof _.isLength; - export = isLength; -} - - -declare module "lodash/isMap" { - const isMap: typeof _.isMap; - export = isMap; -} - - -declare module "lodash/isMatch" { - const isMatch: typeof _.isMatch; - export = isMatch; -} - - -declare module "lodash/isMatchWith" { - const isMatchWith: typeof _.isMatchWith; - export = isMatchWith; -} - - -declare module "lodash/isNaN" { - const isNaN: typeof _.isNaN; - export = isNaN; -} - - -declare module "lodash/isNative" { - const isNative: typeof _.isNative; - export = isNative; -} - - -declare module "lodash/isNil" { - const isNil: typeof _.isNil; - export = isNil; -} - - -declare module "lodash/isNull" { - const isNull: typeof _.isNull; - export = isNull; -} - - -declare module "lodash/isNumber" { - const isNumber: typeof _.isNumber; - export = isNumber; -} - - -declare module "lodash/isObject" { - const isObject: typeof _.isObject; - export = isObject; -} - - -declare module "lodash/isObjectLike" { - const isObjectLike: typeof _.isObjectLike; - export = isObjectLike; -} - - -declare module "lodash/isPlainObject" { - const isPlainObject: typeof _.isPlainObject; - export = isPlainObject; -} - - -declare module "lodash/isRegExp" { - const isRegExp: typeof _.isRegExp; - export = isRegExp; -} - - -declare module "lodash/isSafeInteger" { - const isSafeInteger: typeof _.isSafeInteger; - export = isSafeInteger; -} - - -declare module "lodash/isSet" { - const isSet: typeof _.isSet; - export = isSet; -} - - -declare module "lodash/isString" { - const isString: typeof _.isString; - export = isString; -} - - -declare module "lodash/isSymbol" { - const isSymbol: typeof _.isSymbol; - export = isSymbol; -} - - -declare module "lodash/isTypedArray" { - const isTypedArray: typeof _.isTypedArray; - export = isTypedArray; -} - - -declare module "lodash/isUndefined" { - const isUndefined: typeof _.isUndefined; - export = isUndefined; -} - - -declare module "lodash/isWeakMap" { - const isWeakMap: typeof _.isWeakMap; - export = isWeakMap; -} - - -declare module "lodash/isWeakSet" { - const isWeakSet: typeof _.isWeakSet; - export = isWeakSet; -} - - -declare module "lodash/join" { - const join: typeof _.join; - export = join; -} - - -declare module "lodash/kebabCase" { - const kebabCase: typeof _.kebabCase; - export = kebabCase; -} - - -declare module "lodash/last" { - const last: typeof _.last; - export = last; -} - - -declare module "lodash/lastIndexOf" { - const lastIndexOf: typeof _.lastIndexOf; - export = lastIndexOf; -} - - -declare module "lodash/lowerCase" { - const lowerCase: typeof _.lowerCase; - export = lowerCase; -} - - -declare module "lodash/lowerFirst" { - const lowerFirst: typeof _.lowerFirst; - export = lowerFirst; -} - - -declare module "lodash/lt" { - const lt: typeof _.lt; - export = lt; -} - - -declare module "lodash/lte" { - const lte: typeof _.lte; - export = lte; -} - - -declare module "lodash/max" { - const max: typeof _.max; - export = max; -} - - -declare module "lodash/maxBy" { - const maxBy: typeof _.maxBy; - export = maxBy; -} - - -declare module "lodash/mean" { - const mean: typeof _.mean; - export = mean; -} - -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/meanBy" { - const meanBy: typeof _.meanBy; - export = meanBy; -} -*/ - -declare module "lodash/min" { - const min: typeof _.min; - export = min; -} - - -declare module "lodash/minBy" { - const minBy: typeof _.minBy; - export = minBy; -} - -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/multiply" { - const multiply: typeof _.multiply; - export = multiply; -} -*/ - -/** -* uncoment it if definition exists -*/ -/* -declare module "lodash/nth" { - const nth: typeof _.nth; - export = nth; -} -*/ - -declare module "lodash/noConflict" { - const noConflict: typeof _.noConflict; - export = noConflict; -} - - -declare module "lodash/noop" { - const noop: typeof _.noop; - export = noop; -} - - -declare module "lodash/now" { - const now: typeof _.now; - export = now; -} - - -declare module "lodash/pad" { - const pad: typeof _.pad; - export = pad; -} - - -declare module "lodash/padEnd" { - const padEnd: typeof _.padEnd; - export = padEnd; -} - - -declare module "lodash/padStart" { - const padStart: typeof _.padStart; - export = padStart; -} - - -declare module "lodash/parseInt" { - const parseInt: typeof _.parseInt; - export = parseInt; -} - - -declare module "lodash/random" { - const random: typeof _.random; - export = random; -} - - -declare module "lodash/reduce" { - const reduce: typeof _.reduce; - export = reduce; -} - - -declare module "lodash/reduceRight" { - const reduceRight: typeof _.reduceRight; - export = reduceRight; -} - - -declare module "lodash/repeat" { - const repeat: typeof _.repeat; - export = repeat; -} - - -declare module "lodash/replace" { - const replace: typeof _.replace; - export = replace; -} - - -declare module "lodash/result" { - const result: typeof _.result; - export = result; -} - - -declare module "lodash/round" { - const round: typeof _.round; - export = round; -} - - -declare module "lodash/runInContext" { - const runInContext: typeof _.runInContext; - export = runInContext; -} - - -declare module "lodash/sample" { - const sample: typeof _.sample; - export = sample; -} - - -declare module "lodash/size" { - const size: typeof _.size; - export = size; -} - - -declare module "lodash/snakeCase" { - const snakeCase: typeof _.snakeCase; - export = snakeCase; -} - - -declare module "lodash/some" { - const some: typeof _.some; - export = some; -} - - -declare module "lodash/sortedIndex" { - const sortedIndex: typeof _.sortedIndex; - export = sortedIndex; -} - - -declare module "lodash/sortedIndexBy" { - const sortedIndexBy: typeof _.sortedIndexBy; - export = sortedIndexBy; -} - - -declare module "lodash/sortedIndexOf" { - const sortedIndexOf: typeof _.sortedIndexOf; - export = sortedIndexOf; -} - - -declare module "lodash/sortedLastIndex" { - const sortedLastIndex: typeof _.sortedLastIndex; - export = sortedLastIndex; -} - - -declare module "lodash/sortedLastIndexBy" { - const sortedLastIndexBy: typeof _.sortedLastIndexBy; - export = sortedLastIndexBy; -} - - -declare module "lodash/sortedLastIndexOf" { - const sortedLastIndexOf: typeof _.sortedLastIndexOf; - export = sortedLastIndexOf; -} - - -declare module "lodash/startCase" { - const startCase: typeof _.startCase; - export = startCase; -} - - -declare module "lodash/startsWith" { - const startsWith: typeof _.startsWith; - export = startsWith; -} - - -declare module "lodash/subtract" { - const subtract: typeof _.subtract; - export = subtract; -} - - -declare module "lodash/sum" { - const sum: typeof _.sum; - export = sum; -} - - -declare module "lodash/sumBy" { - const sumBy: typeof _.sumBy; - export = sumBy; -} - - -declare module "lodash/template" { - const template: typeof _.template; - export = template; -} - - -declare module "lodash/times" { - const times: typeof _.times; - export = times; -} - - -declare module "lodash/toInteger" { - const toInteger: typeof _.toInteger; - export = toInteger; -} - - -declare module "lodash/toLength" { - const toLength: typeof _.toLength; - export = toLength; -} - - -declare module "lodash/toLower" { - const toLower: typeof _.toLower; - export = toLower; -} - - -declare module "lodash/toNumber" { - const toNumber: typeof _.toNumber; - export = toNumber; -} - - -declare module "lodash/toSafeInteger" { - const toSafeInteger: typeof _.toSafeInteger; - export = toSafeInteger; -} - - -declare module "lodash/toString" { - const toString: typeof _.toString; - export = toString; -} - - -declare module "lodash/toUpper" { - const toUpper: typeof _.toUpper; - export = toUpper; -} - - -declare module "lodash/trim" { - const trim: typeof _.trim; - export = trim; -} - - -declare module "lodash/trimEnd" { - const trimEnd: typeof _.trimEnd; - export = trimEnd; -} - - -declare module "lodash/trimStart" { - const trimStart: typeof _.trimStart; - export = trimStart; -} - - -declare module "lodash/truncate" { - const truncate: typeof _.truncate; - export = truncate; -} - - -declare module "lodash/unescape" { - const unescape: typeof _.unescape; - export = unescape; -} - - -declare module "lodash/uniqueId" { - const uniqueId: typeof _.uniqueId; - export = uniqueId; -} - - -declare module "lodash/upperCase" { - const upperCase: typeof _.upperCase; - export = upperCase; -} - - -declare module "lodash/upperFirst" { - const upperFirst: typeof _.upperFirst; - export = upperFirst; -} - - -declare module "lodash/each" { - const each: typeof _.each; - export = each; -} - - -declare module "lodash/eachRight" { - const eachRight: typeof _.eachRight; - export = eachRight; -} - - -declare module "lodash/first" { - const first: typeof _.first; - export = first; -} - -declare module "lodash/fp" { - export = _; -} - -declare module "lodash" { - export = _; -} - -// Backward compatibility with --target es5 -interface Set {} -interface Map {} -interface WeakSet {} -interface WeakMap {} diff --git a/samples/react-organisationchart/typings/mocha/mocha.d.ts b/samples/react-organisationchart/typings/mocha/mocha.d.ts deleted file mode 100644 index 88dc359fc..000000000 --- a/samples/react-organisationchart/typings/mocha/mocha.d.ts +++ /dev/null @@ -1,214 +0,0 @@ -// Type definitions for mocha 2.2.5 -// Project: http://mochajs.org/ -// Definitions by: Kazi Manzur Rashid , otiai10 , jt000 , Vadim Macagon -// Definitions: https://github.com/borisyankov/DefinitelyTyped - -interface MochaSetupOptions { - //milliseconds to wait before considering a test slow - slow?: number; - - // timeout in milliseconds - timeout?: number; - - // ui name "bdd", "tdd", "exports" etc - ui?: string; - - //array of accepted globals - globals?: any[]; - - // reporter instance (function or string), defaults to `mocha.reporters.Spec` - reporter?: any; - - // bail on the first test failure - bail?: boolean; - - // ignore global leaks - ignoreLeaks?: boolean; - - // grep string or regexp to filter tests with - grep?: any; -} - -interface MochaDone { - (error?: Error): void; -} - -declare var mocha: Mocha; -declare var describe: Mocha.IContextDefinition; -declare var xdescribe: Mocha.IContextDefinition; -// alias for `describe` -declare var context: Mocha.IContextDefinition; -// alias for `describe` -declare var suite: Mocha.IContextDefinition; -declare var it: Mocha.ITestDefinition; -declare var xit: Mocha.ITestDefinition; -// alias for `it` -declare var test: Mocha.ITestDefinition; - -declare function before(action: () => void): void; - -declare function before(action: (done: MochaDone) => void): void; - -declare function setup(action: () => void): void; - -declare function setup(action: (done: MochaDone) => void): void; - -declare function after(action: () => void): void; - -declare function after(action: (done: MochaDone) => void): void; - -declare function teardown(action: () => void): void; - -declare function teardown(action: (done: MochaDone) => void): void; - -declare function beforeEach(action: () => void): void; - -declare function beforeEach(action: (done: MochaDone) => void): void; - -declare function suiteSetup(action: () => void): void; - -declare function suiteSetup(action: (done: MochaDone) => void): void; - -declare function afterEach(action: () => void): void; - -declare function afterEach(action: (done: MochaDone) => void): void; - -declare function suiteTeardown(action: () => void): void; - -declare function suiteTeardown(action: (done: MochaDone) => void): void; - -declare class Mocha { - constructor(options?: { - grep?: RegExp; - ui?: string; - reporter?: string; - timeout?: number; - bail?: boolean; - }); - - /** Setup mocha with the given options. */ - setup(options: MochaSetupOptions): Mocha; - bail(value?: boolean): Mocha; - addFile(file: string): Mocha; - /** Sets reporter by name, defaults to "spec". */ - reporter(name: string): Mocha; - /** Sets reporter constructor, defaults to mocha.reporters.Spec. */ - reporter(reporter: (runner: Mocha.IRunner, options: any) => any): Mocha; - ui(value: string): Mocha; - grep(value: string): Mocha; - grep(value: RegExp): Mocha; - invert(): Mocha; - ignoreLeaks(value: boolean): Mocha; - checkLeaks(): Mocha; - /** Enables growl support. */ - growl(): Mocha; - globals(value: string): Mocha; - globals(values: string[]): Mocha; - useColors(value: boolean): Mocha; - useInlineDiffs(value: boolean): Mocha; - timeout(value: number): Mocha; - slow(value: number): Mocha; - enableTimeouts(value: boolean): Mocha; - asyncOnly(value: boolean): Mocha; - noHighlighting(value: boolean): Mocha; - /** Runs tests and invokes `onComplete()` when finished. */ - run(onComplete?: (failures: number) => void): Mocha.IRunner; -} - -// merge the Mocha class declaration with a module -declare module Mocha { - /** Partial interface for Mocha's `Runnable` class. */ - interface IRunnable { - title: string; - fn: Function; - async: boolean; - sync: boolean; - timedOut: boolean; - } - - /** Partial interface for Mocha's `Suite` class. */ - interface ISuite { - parent: ISuite; - title: string; - - fullTitle(): string; - } - - /** Partial interface for Mocha's `Test` class. */ - interface ITest extends IRunnable { - parent: ISuite; - pending: boolean; - - fullTitle(): string; - } - - /** Partial interface for Mocha's `Runner` class. */ - interface IRunner {} - - interface IContextDefinition { - (description: string, spec: () => void): ISuite; - only(description: string, spec: () => void): ISuite; - skip(description: string, spec: () => void): void; - timeout(ms: number): void; - } - - interface ITestDefinition { - (expectation: string, assertion?: () => void): ITest; - (expectation: string, assertion?: (done: MochaDone) => void): ITest; - only(expectation: string, assertion?: () => void): ITest; - only(expectation: string, assertion?: (done: MochaDone) => void): ITest; - skip(expectation: string, assertion?: () => void): void; - skip(expectation: string, assertion?: (done: MochaDone) => void): void; - timeout(ms: number): void; - } - - export module reporters { - export class Base { - stats: { - suites: number; - tests: number; - passes: number; - pending: number; - failures: number; - }; - - constructor(runner: IRunner); - } - - export class Doc extends Base {} - export class Dot extends Base {} - export class HTML extends Base {} - export class HTMLCov extends Base {} - export class JSON extends Base {} - export class JSONCov extends Base {} - export class JSONStream extends Base {} - export class Landing extends Base {} - export class List extends Base {} - export class Markdown extends Base {} - export class Min extends Base {} - export class Nyan extends Base {} - export class Progress extends Base { - /** - * @param options.open String used to indicate the start of the progress bar. - * @param options.complete String used to indicate a complete test on the progress bar. - * @param options.incomplete String used to indicate an incomplete test on the progress bar. - * @param options.close String used to indicate the end of the progress bar. - */ - constructor(runner: IRunner, options?: { - open?: string; - complete?: string; - incomplete?: string; - close?: string; - }); - } - export class Spec extends Base {} - export class TAP extends Base {} - export class XUnit extends Base { - constructor(runner: IRunner, options?: any); - } - } -} - -declare module "mocha" { - export = Mocha; -} diff --git a/samples/react-organisationchart/typings/node/node.d.ts b/samples/react-organisationchart/typings/node/node.d.ts deleted file mode 100644 index 710a133f0..000000000 --- a/samples/react-organisationchart/typings/node/node.d.ts +++ /dev/null @@ -1,2392 +0,0 @@ -// Type definitions for Node.js v4.x -// Project: http://nodejs.org/ -// Definitions by: Microsoft TypeScript , DefinitelyTyped -// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped - -/************************************************ -* * -* Node.js v4.x API * -* * -************************************************/ - -interface Error { - stack?: string; -} - - -// compat for TypeScript 1.8 -// if you use with --target es3 or --target es5 and use below definitions, -// use the lib.es6.d.ts that is bundled with TypeScript 1.8. -interface MapConstructor {} -interface WeakMapConstructor {} -interface SetConstructor {} -interface WeakSetConstructor {} - -/************************************************ -* * -* GLOBAL * -* * -************************************************/ -declare var process: NodeJS.Process; -declare var global: NodeJS.Global; - -declare var __filename: string; -declare var __dirname: string; - -declare function setTimeout(callback: (...args: any[]) => void, ms: number, ...args: any[]): NodeJS.Timer; -declare function clearTimeout(timeoutId: NodeJS.Timer): void; -declare function setInterval(callback: (...args: any[]) => void, ms: number, ...args: any[]): NodeJS.Timer; -declare function clearInterval(intervalId: NodeJS.Timer): void; -declare function setImmediate(callback: (...args: any[]) => void, ...args: any[]): any; -declare function clearImmediate(immediateId: any): void; - -interface NodeRequireFunction { - (id: string): any; -} - -interface NodeRequire extends NodeRequireFunction { - resolve(id:string): string; - cache: any; - extensions: any; - main: any; -} - -// HACK to use ODSP webpack require function. -// declare var require: NodeRequire; - -interface NodeModule { - exports: any; - require: NodeRequireFunction; - id: string; - filename: string; - loaded: boolean; - parent: any; - children: any[]; -} - -declare var module: NodeModule; - -// Same as module.exports -declare var exports: any; -declare var SlowBuffer: { - new (str: string, encoding?: string): Buffer; - new (size: number): Buffer; - new (size: Uint8Array): Buffer; - new (array: any[]): Buffer; - prototype: Buffer; - isBuffer(obj: any): boolean; - byteLength(string: string, encoding?: string): number; - concat(list: Buffer[], totalLength?: number): Buffer; -}; - - -// Buffer class -type BufferEncoding = "ascii" | "utf8" | "utf16le" | "ucs2" | "binary" | "hex"; -interface Buffer extends NodeBuffer {} - -/** - * Raw data is stored in instances of the Buffer class. - * A Buffer is similar to an array of integers but corresponds to a raw memory allocation outside the V8 heap. A Buffer cannot be resized. - * Valid string encodings: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex' - */ -declare var Buffer: { - /** - * Allocates a new buffer containing the given {str}. - * - * @param str String to store in buffer. - * @param encoding encoding to use, optional. Default is 'utf8' - */ - new (str: string, encoding?: string): Buffer; - /** - * Allocates a new buffer of {size} octets. - * - * @param size count of octets to allocate. - */ - new (size: number): Buffer; - /** - * Allocates a new buffer containing the given {array} of octets. - * - * @param array The octets to store. - */ - new (array: Uint8Array): Buffer; - /** - * Produces a Buffer backed by the same allocated memory as - * the given {ArrayBuffer}. - * - * - * @param arrayBuffer The ArrayBuffer with which to share memory. - */ - new (arrayBuffer: ArrayBuffer): Buffer; - /** - * Allocates a new buffer containing the given {array} of octets. - * - * @param array The octets to store. - */ - new (array: any[]): Buffer; - /** - * Copies the passed {buffer} data onto a new {Buffer} instance. - * - * @param buffer The buffer to copy. - */ - new (buffer: Buffer): Buffer; - prototype: Buffer; - /** - * Allocates a new Buffer using an {array} of octets. - * - * @param array - */ - from(array: any[]): Buffer; - /** - * When passed a reference to the .buffer property of a TypedArray instance, - * the newly created Buffer will share the same allocated memory as the TypedArray. - * The optional {byteOffset} and {length} arguments specify a memory range - * within the {arrayBuffer} that will be shared by the Buffer. - * - * @param arrayBuffer The .buffer property of a TypedArray or a new ArrayBuffer() - * @param byteOffset - * @param length - */ - from(arrayBuffer: ArrayBuffer, byteOffset?: number, length?:number): Buffer; - /** - * Copies the passed {buffer} data onto a new Buffer instance. - * - * @param buffer - */ - from(buffer: Buffer): Buffer; - /** - * Creates a new Buffer containing the given JavaScript string {str}. - * If provided, the {encoding} parameter identifies the character encoding. - * If not provided, {encoding} defaults to 'utf8'. - * - * @param str - */ - from(str: string, encoding?: string): Buffer; - /** - * Returns true if {obj} is a Buffer - * - * @param obj object to test. - */ - isBuffer(obj: any): obj is Buffer; - /** - * Returns true if {encoding} is a valid encoding argument. - * Valid string encodings in Node 0.12: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex' - * - * @param encoding string to test. - */ - isEncoding(encoding: string): boolean; - /** - * Gives the actual byte length of a string. encoding defaults to 'utf8'. - * This is not the same as String.prototype.length since that returns the number of characters in a string. - * - * @param string string to test. - * @param encoding encoding used to evaluate (defaults to 'utf8') - */ - byteLength(string: string, encoding?: string): number; - /** - * Returns a buffer which is the result of concatenating all the buffers in the list together. - * - * If the list has no items, or if the totalLength is 0, then it returns a zero-length buffer. - * If the list has exactly one item, then the first item of the list is returned. - * If the list has more than one item, then a new Buffer is created. - * - * @param list An array of Buffer objects to concatenate - * @param totalLength Total length of the buffers when concatenated. - * If totalLength is not provided, it is read from the buffers in the list. However, this adds an additional loop to the function, so it is faster to provide the length explicitly. - */ - concat(list: Buffer[], totalLength?: number): Buffer; - /** - * The same as buf1.compare(buf2). - */ - compare(buf1: Buffer, buf2: Buffer): number; -}; - -/************************************************ -* * -* GLOBAL INTERFACES * -* * -************************************************/ -declare namespace NodeJS { - export interface ErrnoException extends Error { - errno?: number; - code?: string; - path?: string; - syscall?: string; - stack?: string; - } - - export interface EventEmitter { - addListener(event: string, listener: Function): this; - on(event: string, listener: Function): this; - once(event: string, listener: Function): this; - removeListener(event: string, listener: Function): this; - removeAllListeners(event?: string): this; - setMaxListeners(n: number): this; - getMaxListeners(): number; - listeners(event: string): Function[]; - emit(event: string, ...args: any[]): boolean; - listenerCount(type: string): number; - } - - export interface ReadableStream extends EventEmitter { - readable: boolean; - read(size?: number): string|Buffer; - setEncoding(encoding: string): void; - pause(): void; - resume(): void; - pipe(destination: T, options?: { end?: boolean; }): T; - unpipe(destination?: T): void; - unshift(chunk: string): void; - unshift(chunk: Buffer): void; - wrap(oldStream: ReadableStream): ReadableStream; - } - - export interface WritableStream extends EventEmitter { - writable: boolean; - write(buffer: Buffer|string, cb?: Function): boolean; - write(str: string, encoding?: string, cb?: Function): boolean; - end(): void; - end(buffer: Buffer, cb?: Function): void; - end(str: string, cb?: Function): void; - end(str: string, encoding?: string, cb?: Function): void; - } - - export interface ReadWriteStream extends ReadableStream, WritableStream {} - - export interface Events extends EventEmitter { } - - export interface Domain extends Events { - run(fn: Function): void; - add(emitter: Events): void; - remove(emitter: Events): void; - bind(cb: (err: Error, data: any) => any): any; - intercept(cb: (data: any) => any): any; - dispose(): void; - - addListener(event: string, listener: Function): this; - on(event: string, listener: Function): this; - once(event: string, listener: Function): this; - removeListener(event: string, listener: Function): this; - removeAllListeners(event?: string): this; - } - - export interface MemoryUsage { - rss: number; - heapTotal: number; - heapUsed: number; - } - - export interface Process extends EventEmitter { - stdout: WritableStream; - stderr: WritableStream; - stdin: ReadableStream; - argv: string[]; - execArgv: string[]; - execPath: string; - abort(): void; - chdir(directory: string): void; - cwd(): string; - env: any; - exit(code?: number): void; - getgid(): number; - setgid(id: number): void; - setgid(id: string): void; - getuid(): number; - setuid(id: number): void; - setuid(id: string): void; - version: string; - versions: { - http_parser: string; - node: string; - v8: string; - ares: string; - uv: string; - zlib: string; - modules: string; - openssl: string; - }; - config: { - target_defaults: { - cflags: any[]; - default_configuration: string; - defines: string[]; - include_dirs: string[]; - libraries: string[]; - }; - variables: { - clang: number; - host_arch: string; - node_install_npm: boolean; - node_install_waf: boolean; - node_prefix: string; - node_shared_openssl: boolean; - node_shared_v8: boolean; - node_shared_zlib: boolean; - node_use_dtrace: boolean; - node_use_etw: boolean; - node_use_openssl: boolean; - target_arch: string; - v8_no_strict_aliasing: number; - v8_use_snapshot: boolean; - visibility: string; - }; - }; - kill(pid:number, signal?: string|number): void; - pid: number; - title: string; - arch: string; - platform: string; - memoryUsage(): MemoryUsage; - nextTick(callback: Function): void; - umask(mask?: number): number; - uptime(): number; - hrtime(time?:number[]): number[]; - domain: Domain; - - // Worker - send?(message: any, sendHandle?: any): void; - disconnect(): void; - connected: boolean; - } - - export interface Global { - Array: typeof Array; - ArrayBuffer: typeof ArrayBuffer; - Boolean: typeof Boolean; - Buffer: typeof Buffer; - DataView: typeof DataView; - Date: typeof Date; - Error: typeof Error; - EvalError: typeof EvalError; - Float32Array: typeof Float32Array; - Float64Array: typeof Float64Array; - Function: typeof Function; - GLOBAL: Global; - Infinity: typeof Infinity; - Int16Array: typeof Int16Array; - Int32Array: typeof Int32Array; - Int8Array: typeof Int8Array; - Intl: typeof Intl; - JSON: typeof JSON; - Map: MapConstructor; - Math: typeof Math; - NaN: typeof NaN; - Number: typeof Number; - Object: typeof Object; - Promise: Function; - RangeError: typeof RangeError; - ReferenceError: typeof ReferenceError; - RegExp: typeof RegExp; - Set: SetConstructor; - String: typeof String; - Symbol: Function; - SyntaxError: typeof SyntaxError; - TypeError: typeof TypeError; - URIError: typeof URIError; - Uint16Array: typeof Uint16Array; - Uint32Array: typeof Uint32Array; - Uint8Array: typeof Uint8Array; - Uint8ClampedArray: Function; - WeakMap: WeakMapConstructor; - WeakSet: WeakSetConstructor; - clearImmediate: (immediateId: any) => void; - clearInterval: (intervalId: NodeJS.Timer) => void; - clearTimeout: (timeoutId: NodeJS.Timer) => void; - console: typeof console; - decodeURI: typeof decodeURI; - decodeURIComponent: typeof decodeURIComponent; - encodeURI: typeof encodeURI; - encodeURIComponent: typeof encodeURIComponent; - escape: (str: string) => string; - eval: typeof eval; - global: Global; - isFinite: typeof isFinite; - isNaN: typeof isNaN; - parseFloat: typeof parseFloat; - parseInt: typeof parseInt; - process: Process; - root: Global; - setImmediate: (callback: (...args: any[]) => void, ...args: any[]) => any; - setInterval: (callback: (...args: any[]) => void, ms: number, ...args: any[]) => NodeJS.Timer; - setTimeout: (callback: (...args: any[]) => void, ms: number, ...args: any[]) => NodeJS.Timer; - undefined: typeof undefined; - unescape: (str: string) => string; - gc: () => void; - v8debug?: any; - } - - export interface Timer { - ref() : void; - unref() : void; - } -} - -/** - * @deprecated - */ -interface NodeBuffer extends Uint8Array { - write(string: string, offset?: number, length?: number, encoding?: string): number; - toString(encoding?: string, start?: number, end?: number): string; - toJSON(): any; - equals(otherBuffer: Buffer): boolean; - compare(otherBuffer: Buffer): number; - copy(targetBuffer: Buffer, targetStart?: number, sourceStart?: number, sourceEnd?: number): number; - slice(start?: number, end?: number): Buffer; - writeUIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; - writeUIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; - writeIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; - writeIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number; - readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number; - readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number; - readIntLE(offset: number, byteLength: number, noAssert?: boolean): number; - readIntBE(offset: number, byteLength: number, noAssert?: boolean): number; - readUInt8(offset: number, noAssert?: boolean): number; - readUInt16LE(offset: number, noAssert?: boolean): number; - readUInt16BE(offset: number, noAssert?: boolean): number; - readUInt32LE(offset: number, noAssert?: boolean): number; - readUInt32BE(offset: number, noAssert?: boolean): number; - readInt8(offset: number, noAssert?: boolean): number; - readInt16LE(offset: number, noAssert?: boolean): number; - readInt16BE(offset: number, noAssert?: boolean): number; - readInt32LE(offset: number, noAssert?: boolean): number; - readInt32BE(offset: number, noAssert?: boolean): number; - readFloatLE(offset: number, noAssert?: boolean): number; - readFloatBE(offset: number, noAssert?: boolean): number; - readDoubleLE(offset: number, noAssert?: boolean): number; - readDoubleBE(offset: number, noAssert?: boolean): number; - writeUInt8(value: number, offset: number, noAssert?: boolean): number; - writeUInt16LE(value: number, offset: number, noAssert?: boolean): number; - writeUInt16BE(value: number, offset: number, noAssert?: boolean): number; - writeUInt32LE(value: number, offset: number, noAssert?: boolean): number; - writeUInt32BE(value: number, offset: number, noAssert?: boolean): number; - writeInt8(value: number, offset: number, noAssert?: boolean): number; - writeInt16LE(value: number, offset: number, noAssert?: boolean): number; - writeInt16BE(value: number, offset: number, noAssert?: boolean): number; - writeInt32LE(value: number, offset: number, noAssert?: boolean): number; - writeInt32BE(value: number, offset: number, noAssert?: boolean): number; - writeFloatLE(value: number, offset: number, noAssert?: boolean): number; - writeFloatBE(value: number, offset: number, noAssert?: boolean): number; - writeDoubleLE(value: number, offset: number, noAssert?: boolean): number; - writeDoubleBE(value: number, offset: number, noAssert?: boolean): number; - fill(value: any, offset?: number, end?: number): this; - // TODO: encoding param - indexOf(value: string | number | Buffer, byteOffset?: number): number; - // TODO: entries - // TODO: includes - // TODO: keys - // TODO: values -} - -/************************************************ -* * -* MODULES * -* * -************************************************/ -declare module "buffer" { - export var INSPECT_MAX_BYTES: number; - var BuffType: typeof Buffer; - var SlowBuffType: typeof SlowBuffer; - export { BuffType as Buffer, SlowBuffType as SlowBuffer }; -} - -declare module "querystring" { - export interface StringifyOptions { - encodeURIComponent?: Function; - } - - export interface ParseOptions { - maxKeys?: number; - decodeURIComponent?: Function; - } - - export function stringify(obj: T, sep?: string, eq?: string, options?: StringifyOptions): string; - export function parse(str: string, sep?: string, eq?: string, options?: ParseOptions): any; - export function parse(str: string, sep?: string, eq?: string, options?: ParseOptions): T; - export function escape(str: string): string; - export function unescape(str: string): string; -} - -declare module "events" { - export class EventEmitter implements NodeJS.EventEmitter { - static EventEmitter: EventEmitter; - static listenerCount(emitter: EventEmitter, event: string): number; // deprecated - static defaultMaxListeners: number; - - addListener(event: string, listener: Function): this; - on(event: string, listener: Function): this; - once(event: string, listener: Function): this; - removeListener(event: string, listener: Function): this; - removeAllListeners(event?: string): this; - setMaxListeners(n: number): this; - getMaxListeners(): number; - listeners(event: string): Function[]; - emit(event: string, ...args: any[]): boolean; - listenerCount(type: string): number; - } -} - -declare module "http" { - import * as events from "events"; - import * as net from "net"; - import * as stream from "stream"; - - export interface RequestOptions { - protocol?: string; - host?: string; - hostname?: string; - family?: number; - port?: number; - localAddress?: string; - socketPath?: string; - method?: string; - path?: string; - headers?: { [key: string]: any }; - auth?: string; - agent?: Agent|boolean; - } - - export interface Server extends events.EventEmitter, net.Server { - setTimeout(msecs: number, callback: Function): void; - maxHeadersCount: number; - timeout: number; - } - /** - * @deprecated Use IncomingMessage - */ - export interface ServerRequest extends IncomingMessage { - connection: net.Socket; - } - export interface ServerResponse extends events.EventEmitter, stream.Writable { - // Extended base methods - write(buffer: Buffer): boolean; - write(buffer: Buffer, cb?: Function): boolean; - write(str: string, cb?: Function): boolean; - write(str: string, encoding?: string, cb?: Function): boolean; - write(str: string, encoding?: string, fd?: string): boolean; - - writeContinue(): void; - writeHead(statusCode: number, reasonPhrase?: string, headers?: any): void; - writeHead(statusCode: number, headers?: any): void; - statusCode: number; - statusMessage: string; - headersSent: boolean; - setHeader(name: string, value: string | string[]): void; - sendDate: boolean; - getHeader(name: string): string; - removeHeader(name: string): void; - write(chunk: any, encoding?: string): any; - addTrailers(headers: any): void; - - // Extended base methods - end(): void; - end(buffer: Buffer, cb?: Function): void; - end(str: string, cb?: Function): void; - end(str: string, encoding?: string, cb?: Function): void; - end(data?: any, encoding?: string): void; - } - export interface ClientRequest extends events.EventEmitter, stream.Writable { - // Extended base methods - write(buffer: Buffer): boolean; - write(buffer: Buffer, cb?: Function): boolean; - write(str: string, cb?: Function): boolean; - write(str: string, encoding?: string, cb?: Function): boolean; - write(str: string, encoding?: string, fd?: string): boolean; - - write(chunk: any, encoding?: string): void; - abort(): void; - setTimeout(timeout: number, callback?: Function): void; - setNoDelay(noDelay?: boolean): void; - setSocketKeepAlive(enable?: boolean, initialDelay?: number): void; - - setHeader(name: string, value: string | string[]): void; - getHeader(name: string): string; - removeHeader(name: string): void; - addTrailers(headers: any): void; - - // Extended base methods - end(): void; - end(buffer: Buffer, cb?: Function): void; - end(str: string, cb?: Function): void; - end(str: string, encoding?: string, cb?: Function): void; - end(data?: any, encoding?: string): void; - } - export interface IncomingMessage extends events.EventEmitter, stream.Readable { - httpVersion: string; - headers: any; - rawHeaders: string[]; - trailers: any; - rawTrailers: any; - setTimeout(msecs: number, callback: Function): NodeJS.Timer; - /** - * Only valid for request obtained from http.Server. - */ - method?: string; - /** - * Only valid for request obtained from http.Server. - */ - url?: string; - /** - * Only valid for response obtained from http.ClientRequest. - */ - statusCode?: number; - /** - * Only valid for response obtained from http.ClientRequest. - */ - statusMessage?: string; - socket: net.Socket; - } - /** - * @deprecated Use IncomingMessage - */ - export interface ClientResponse extends IncomingMessage { } - - export interface AgentOptions { - /** - * Keep sockets around in a pool to be used by other requests in the future. Default = false - */ - keepAlive?: boolean; - /** - * When using HTTP KeepAlive, how often to send TCP KeepAlive packets over sockets being kept alive. Default = 1000. - * Only relevant if keepAlive is set to true. - */ - keepAliveMsecs?: number; - /** - * Maximum number of sockets to allow per host. Default for Node 0.10 is 5, default for Node 0.12 is Infinity - */ - maxSockets?: number; - /** - * Maximum number of sockets to leave open in a free state. Only relevant if keepAlive is set to true. Default = 256. - */ - maxFreeSockets?: number; - } - - export class Agent { - maxSockets: number; - sockets: any; - requests: any; - - constructor(opts?: AgentOptions); - - /** - * Destroy any sockets that are currently in use by the agent. - * It is usually not necessary to do this. However, if you are using an agent with KeepAlive enabled, - * then it is best to explicitly shut down the agent when you know that it will no longer be used. Otherwise, - * sockets may hang open for quite a long time before the server terminates them. - */ - destroy(): void; - } - - export var METHODS: string[]; - - export var STATUS_CODES: { - [errorCode: number]: string; - [errorCode: string]: string; - }; - export function createServer(requestListener?: (request: IncomingMessage, response: ServerResponse) =>void ): Server; - export function createClient(port?: number, host?: string): any; - export function request(options: RequestOptions, callback?: (res: IncomingMessage) => void): ClientRequest; - export function get(options: any, callback?: (res: IncomingMessage) => void): ClientRequest; - export var globalAgent: Agent; -} - -declare module "cluster" { - import * as child from "child_process"; - import * as events from "events"; - - export interface ClusterSettings { - exec?: string; - args?: string[]; - silent?: boolean; - } - - export interface Address { - address: string; - port: number; - addressType: string; - } - - export class Worker extends events.EventEmitter { - id: string; - process: child.ChildProcess; - suicide: boolean; - send(message: any, sendHandle?: any): void; - kill(signal?: string): void; - destroy(signal?: string): void; - disconnect(): void; - isConnected(): boolean; - isDead(): boolean; - } - - export var settings: ClusterSettings; - export var isMaster: boolean; - export var isWorker: boolean; - export function setupMaster(settings?: ClusterSettings): void; - export function fork(env?: any): Worker; - export function disconnect(callback?: Function): void; - export var worker: Worker; - export var workers: { - [index: string]: Worker - }; - - // Event emitter - export function addListener(event: string, listener: Function): void; - export function on(event: "disconnect", listener: (worker: Worker) => void): void; - export function on(event: "exit", listener: (worker: Worker, code: number, signal: string) => void): void; - export function on(event: "fork", listener: (worker: Worker) => void): void; - export function on(event: "listening", listener: (worker: Worker, address: any) => void): void; - export function on(event: "message", listener: (worker: Worker, message: any) => void): void; - export function on(event: "online", listener: (worker: Worker) => void): void; - export function on(event: "setup", listener: (settings: any) => void): void; - export function on(event: string, listener: Function): any; - export function once(event: string, listener: Function): void; - export function removeListener(event: string, listener: Function): void; - export function removeAllListeners(event?: string): void; - export function setMaxListeners(n: number): void; - export function listeners(event: string): Function[]; - export function emit(event: string, ...args: any[]): boolean; -} - -declare module "zlib" { - import * as stream from "stream"; - export interface ZlibOptions { chunkSize?: number; windowBits?: number; level?: number; memLevel?: number; strategy?: number; dictionary?: any; } - - export interface Gzip extends stream.Transform { } - export interface Gunzip extends stream.Transform { } - export interface Deflate extends stream.Transform { } - export interface Inflate extends stream.Transform { } - export interface DeflateRaw extends stream.Transform { } - export interface InflateRaw extends stream.Transform { } - export interface Unzip extends stream.Transform { } - - export function createGzip(options?: ZlibOptions): Gzip; - export function createGunzip(options?: ZlibOptions): Gunzip; - export function createDeflate(options?: ZlibOptions): Deflate; - export function createInflate(options?: ZlibOptions): Inflate; - export function createDeflateRaw(options?: ZlibOptions): DeflateRaw; - export function createInflateRaw(options?: ZlibOptions): InflateRaw; - export function createUnzip(options?: ZlibOptions): Unzip; - - export function deflate(buf: Buffer, callback: (error: Error, result: any) =>void ): void; - export function deflateSync(buf: Buffer, options?: ZlibOptions): any; - export function deflateRaw(buf: Buffer, callback: (error: Error, result: any) =>void ): void; - export function deflateRawSync(buf: Buffer, options?: ZlibOptions): any; - export function gzip(buf: Buffer, callback: (error: Error, result: any) =>void ): void; - export function gzipSync(buf: Buffer, options?: ZlibOptions): any; - export function gunzip(buf: Buffer, callback: (error: Error, result: any) =>void ): void; - export function gunzipSync(buf: Buffer, options?: ZlibOptions): any; - export function inflate(buf: Buffer, callback: (error: Error, result: any) =>void ): void; - export function inflateSync(buf: Buffer, options?: ZlibOptions): any; - export function inflateRaw(buf: Buffer, callback: (error: Error, result: any) =>void ): void; - export function inflateRawSync(buf: Buffer, options?: ZlibOptions): any; - export function unzip(buf: Buffer, callback: (error: Error, result: any) =>void ): void; - export function unzipSync(buf: Buffer, options?: ZlibOptions): any; - - // Constants - export var Z_NO_FLUSH: number; - export var Z_PARTIAL_FLUSH: number; - export var Z_SYNC_FLUSH: number; - export var Z_FULL_FLUSH: number; - export var Z_FINISH: number; - export var Z_BLOCK: number; - export var Z_TREES: number; - export var Z_OK: number; - export var Z_STREAM_END: number; - export var Z_NEED_DICT: number; - export var Z_ERRNO: number; - export var Z_STREAM_ERROR: number; - export var Z_DATA_ERROR: number; - export var Z_MEM_ERROR: number; - export var Z_BUF_ERROR: number; - export var Z_VERSION_ERROR: number; - export var Z_NO_COMPRESSION: number; - export var Z_BEST_SPEED: number; - export var Z_BEST_COMPRESSION: number; - export var Z_DEFAULT_COMPRESSION: number; - export var Z_FILTERED: number; - export var Z_HUFFMAN_ONLY: number; - export var Z_RLE: number; - export var Z_FIXED: number; - export var Z_DEFAULT_STRATEGY: number; - export var Z_BINARY: number; - export var Z_TEXT: number; - export var Z_ASCII: number; - export var Z_UNKNOWN: number; - export var Z_DEFLATED: number; - export var Z_NULL: number; -} - -declare module "os" { - export interface CpuInfo { - model: string; - speed: number; - times: { - user: number; - nice: number; - sys: number; - idle: number; - irq: number; - }; - } - - export interface NetworkInterfaceInfo { - address: string; - netmask: string; - family: string; - mac: string; - internal: boolean; - } - - export function tmpdir(): string; - export function homedir(): string; - export function endianness(): string; - export function hostname(): string; - export function type(): string; - export function platform(): string; - export function arch(): string; - export function release(): string; - export function uptime(): number; - export function loadavg(): number[]; - export function totalmem(): number; - export function freemem(): number; - export function cpus(): CpuInfo[]; - export function networkInterfaces(): {[index: string]: NetworkInterfaceInfo[]}; - export var EOL: string; -} - -declare module "https" { - import * as tls from "tls"; - import * as events from "events"; - import * as http from "http"; - - export interface ServerOptions { - pfx?: any; - key?: any; - passphrase?: string; - cert?: any; - ca?: any; - crl?: any; - ciphers?: string; - honorCipherOrder?: boolean; - requestCert?: boolean; - rejectUnauthorized?: boolean; - NPNProtocols?: any; - SNICallback?: (servername: string) => any; - } - - export interface RequestOptions extends http.RequestOptions { - pfx?: any; - key?: any; - passphrase?: string; - cert?: any; - ca?: any; - ciphers?: string; - rejectUnauthorized?: boolean; - secureProtocol?: string; - } - - export interface Agent extends http.Agent { } - - export interface AgentOptions extends http.AgentOptions { - maxCachedSessions?: number; - } - - export var Agent: { - new (options?: AgentOptions): Agent; - }; - export interface Server extends tls.Server { } - export function createServer(options: ServerOptions, requestListener?: Function): Server; - export function request(options: RequestOptions, callback?: (res: http.IncomingMessage) =>void ): http.ClientRequest; - export function get(options: RequestOptions, callback?: (res: http.IncomingMessage) =>void ): http.ClientRequest; - export var globalAgent: Agent; -} - -declare module "punycode" { - export function decode(string: string): string; - export function encode(string: string): string; - export function toUnicode(domain: string): string; - export function toASCII(domain: string): string; - export var ucs2: ucs2; - interface ucs2 { - decode(string: string): number[]; - encode(codePoints: number[]): string; - } - export var version: any; -} - -declare module "repl" { - import * as stream from "stream"; - import * as events from "events"; - - export interface ReplOptions { - prompt?: string; - input?: NodeJS.ReadableStream; - output?: NodeJS.WritableStream; - terminal?: boolean; - eval?: Function; - useColors?: boolean; - useGlobal?: boolean; - ignoreUndefined?: boolean; - writer?: Function; - } - export function start(options: ReplOptions): events.EventEmitter; -} - -declare module "readline" { - import * as events from "events"; - import * as stream from "stream"; - - export interface Key { - sequence?: string; - name?: string; - ctrl?: boolean; - meta?: boolean; - shift?: boolean; - } - - export interface ReadLine extends events.EventEmitter { - setPrompt(prompt: string): void; - prompt(preserveCursor?: boolean): void; - question(query: string, callback: (answer: string) => void): void; - pause(): ReadLine; - resume(): ReadLine; - close(): void; - write(data: string|Buffer, key?: Key): void; - } - - export interface Completer { - (line: string): CompleterResult; - (line: string, callback: (err: any, result: CompleterResult) => void): any; - } - - export interface CompleterResult { - completions: string[]; - line: string; - } - - export interface ReadLineOptions { - input: NodeJS.ReadableStream; - output?: NodeJS.WritableStream; - completer?: Completer; - terminal?: boolean; - historySize?: number; - } - - export function createInterface(input: NodeJS.ReadableStream, output?: NodeJS.WritableStream, completer?: Completer, terminal?: boolean): ReadLine; - export function createInterface(options: ReadLineOptions): ReadLine; - - export function cursorTo(stream: NodeJS.WritableStream, x: number, y: number): void; - export function moveCursor(stream: NodeJS.WritableStream, dx: number|string, dy: number|string): void; - export function clearLine(stream: NodeJS.WritableStream, dir: number): void; - export function clearScreenDown(stream: NodeJS.WritableStream): void; -} - -declare module "vm" { - export interface Context { } - export interface ScriptOptions { - filename?: string; - lineOffset?: number; - columnOffset?: number; - displayErrors?: boolean; - timeout?: number; - cachedData?: Buffer; - produceCachedData?: boolean; - } - export interface RunningScriptOptions { - filename?: string; - lineOffset?: number; - columnOffset?: number; - displayErrors?: boolean; - timeout?: number; - } - export class Script { - constructor(code: string, options?: ScriptOptions); - runInContext(contextifiedSandbox: Context, options?: RunningScriptOptions): any; - runInNewContext(sandbox?: Context, options?: RunningScriptOptions): any; - runInThisContext(options?: RunningScriptOptions): any; - } - export function createContext(sandbox?: Context): Context; - export function isContext(sandbox: Context): boolean; - export function runInContext(code: string, contextifiedSandbox: Context, options?: RunningScriptOptions): any; - export function runInDebugContext(code: string): any; - export function runInNewContext(code: string, sandbox?: Context, options?: RunningScriptOptions): any; - export function runInThisContext(code: string, options?: RunningScriptOptions): any; -} - -declare module "child_process" { - import * as events from "events"; - import * as stream from "stream"; - - export interface ChildProcess extends events.EventEmitter { - stdin: stream.Writable; - stdout: stream.Readable; - stderr: stream.Readable; - stdio: [stream.Writable, stream.Readable, stream.Readable]; - pid: number; - kill(signal?: string): void; - send(message: any, sendHandle?: any): void; - disconnect(): void; - unref(): void; - } - - export interface SpawnOptions { - cwd?: string; - env?: any; - stdio?: any; - detached?: boolean; - uid?: number; - gid?: number; - shell?: boolean | string; - } - export function spawn(command: string, args?: string[], options?: SpawnOptions): ChildProcess; - - export interface ExecOptions { - cwd?: string; - env?: any; - shell?: string; - timeout?: number; - maxBuffer?: number; - killSignal?: string; - uid?: number; - gid?: number; - } - export interface ExecOptionsWithStringEncoding extends ExecOptions { - encoding: BufferEncoding; - } - export interface ExecOptionsWithBufferEncoding extends ExecOptions { - encoding: string; // specify `null`. - } - export function exec(command: string, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; - export function exec(command: string, options: ExecOptionsWithStringEncoding, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; - // usage. child_process.exec("tsc", {encoding: null as string}, (err, stdout, stderr) => {}); - export function exec(command: string, options: ExecOptionsWithBufferEncoding, callback?: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess; - export function exec(command: string, options: ExecOptions, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; - - export interface ExecFileOptions { - cwd?: string; - env?: any; - timeout?: number; - maxBuffer?: number; - killSignal?: string; - uid?: number; - gid?: number; - } - export interface ExecFileOptionsWithStringEncoding extends ExecFileOptions { - encoding: BufferEncoding; - } - export interface ExecFileOptionsWithBufferEncoding extends ExecFileOptions { - encoding: string; // specify `null`. - } - export function execFile(file: string, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; - export function execFile(file: string, options?: ExecFileOptionsWithStringEncoding, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; - // usage. child_process.execFile("file.sh", {encoding: null as string}, (err, stdout, stderr) => {}); - export function execFile(file: string, options?: ExecFileOptionsWithBufferEncoding, callback?: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess; - export function execFile(file: string, options?: ExecFileOptions, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; - export function execFile(file: string, args?: string[], callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; - export function execFile(file: string, args?: string[], options?: ExecFileOptionsWithStringEncoding, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; - // usage. child_process.execFile("file.sh", ["foo"], {encoding: null as string}, (err, stdout, stderr) => {}); - export function execFile(file: string, args?: string[], options?: ExecFileOptionsWithBufferEncoding, callback?: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess; - export function execFile(file: string, args?: string[], options?: ExecFileOptions, callback?: (error: Error, stdout: string, stderr: string) =>void ): ChildProcess; - - export interface ForkOptions { - cwd?: string; - env?: any; - execPath?: string; - execArgv?: string[]; - silent?: boolean; - uid?: number; - gid?: number; - } - export function fork(modulePath: string, args?: string[], options?: ForkOptions): ChildProcess; - - export interface SpawnSyncOptions { - cwd?: string; - input?: string | Buffer; - stdio?: any; - env?: any; - uid?: number; - gid?: number; - timeout?: number; - killSignal?: string; - maxBuffer?: number; - encoding?: string; - shell?: boolean | string; - } - export interface SpawnSyncOptionsWithStringEncoding extends SpawnSyncOptions { - encoding: BufferEncoding; - } - export interface SpawnSyncOptionsWithBufferEncoding extends SpawnSyncOptions { - encoding: string; // specify `null`. - } - export interface SpawnSyncReturns { - pid: number; - output: string[]; - stdout: T; - stderr: T; - status: number; - signal: string; - error: Error; - } - export function spawnSync(command: string): SpawnSyncReturns; - export function spawnSync(command: string, options?: SpawnSyncOptionsWithStringEncoding): SpawnSyncReturns; - export function spawnSync(command: string, options?: SpawnSyncOptionsWithBufferEncoding): SpawnSyncReturns; - export function spawnSync(command: string, options?: SpawnSyncOptions): SpawnSyncReturns; - export function spawnSync(command: string, args?: string[], options?: SpawnSyncOptionsWithStringEncoding): SpawnSyncReturns; - export function spawnSync(command: string, args?: string[], options?: SpawnSyncOptionsWithBufferEncoding): SpawnSyncReturns; - export function spawnSync(command: string, args?: string[], options?: SpawnSyncOptions): SpawnSyncReturns; - - export interface ExecSyncOptions { - cwd?: string; - input?: string | Buffer; - stdio?: any; - env?: any; - shell?: string; - uid?: number; - gid?: number; - timeout?: number; - killSignal?: string; - maxBuffer?: number; - encoding?: string; - } - export interface ExecSyncOptionsWithStringEncoding extends ExecSyncOptions { - encoding: BufferEncoding; - } - export interface ExecSyncOptionsWithBufferEncoding extends ExecSyncOptions { - encoding: string; // specify `null`. - } - export function execSync(command: string): Buffer; - export function execSync(command: string, options?: ExecSyncOptionsWithStringEncoding): string; - export function execSync(command: string, options?: ExecSyncOptionsWithBufferEncoding): Buffer; - export function execSync(command: string, options?: ExecSyncOptions): Buffer; - - export interface ExecFileSyncOptions { - cwd?: string; - input?: string | Buffer; - stdio?: any; - env?: any; - uid?: number; - gid?: number; - timeout?: number; - killSignal?: string; - maxBuffer?: number; - encoding?: string; - } - export interface ExecFileSyncOptionsWithStringEncoding extends ExecFileSyncOptions { - encoding: BufferEncoding; - } - export interface ExecFileSyncOptionsWithBufferEncoding extends ExecFileSyncOptions { - encoding: string; // specify `null`. - } - export function execFileSync(command: string): Buffer; - export function execFileSync(command: string, options?: ExecFileSyncOptionsWithStringEncoding): string; - export function execFileSync(command: string, options?: ExecFileSyncOptionsWithBufferEncoding): Buffer; - export function execFileSync(command: string, options?: ExecFileSyncOptions): Buffer; - export function execFileSync(command: string, args?: string[], options?: ExecFileSyncOptionsWithStringEncoding): string; - export function execFileSync(command: string, args?: string[], options?: ExecFileSyncOptionsWithBufferEncoding): Buffer; - export function execFileSync(command: string, args?: string[], options?: ExecFileSyncOptions): Buffer; -} - -declare module "url" { - export interface Url { - href?: string; - protocol?: string; - auth?: string; - hostname?: string; - port?: string; - host?: string; - pathname?: string; - search?: string; - query?: string | any; - slashes?: boolean; - hash?: string; - path?: string; - } - - export function parse(urlStr: string, parseQueryString?: boolean , slashesDenoteHost?: boolean ): Url; - export function format(url: Url): string; - export function resolve(from: string, to: string): string; -} - -declare module "dns" { - export function lookup(domain: string, family: number, callback: (err: Error, address: string, family: number) =>void ): string; - export function lookup(domain: string, callback: (err: Error, address: string, family: number) =>void ): string; - export function resolve(domain: string, rrtype: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolve(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolve4(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolve6(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolveMx(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolveTxt(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolveSrv(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolveNs(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function resolveCname(domain: string, callback: (err: Error, addresses: string[]) =>void ): string[]; - export function reverse(ip: string, callback: (err: Error, domains: string[]) =>void ): string[]; -} - -declare module "net" { - import * as stream from "stream"; - - export interface Socket extends stream.Duplex { - // Extended base methods - write(buffer: Buffer): boolean; - write(buffer: Buffer, cb?: Function): boolean; - write(str: string, cb?: Function): boolean; - write(str: string, encoding?: string, cb?: Function): boolean; - write(str: string, encoding?: string, fd?: string): boolean; - - connect(port: number, host?: string, connectionListener?: Function): void; - connect(path: string, connectionListener?: Function): void; - bufferSize: number; - setEncoding(encoding?: string): void; - write(data: any, encoding?: string, callback?: Function): void; - destroy(): void; - pause(): void; - resume(): void; - setTimeout(timeout: number, callback?: Function): void; - setNoDelay(noDelay?: boolean): void; - setKeepAlive(enable?: boolean, initialDelay?: number): void; - address(): { port: number; family: string; address: string; }; - unref(): void; - ref(): void; - - remoteAddress: string; - remoteFamily: string; - remotePort: number; - localAddress: string; - localPort: number; - bytesRead: number; - bytesWritten: number; - - // Extended base methods - end(): void; - end(buffer: Buffer, cb?: Function): void; - end(str: string, cb?: Function): void; - end(str: string, encoding?: string, cb?: Function): void; - end(data?: any, encoding?: string): void; - } - - export var Socket: { - new (options?: { fd?: string; type?: string; allowHalfOpen?: boolean; }): Socket; - }; - - export interface ListenOptions { - port?: number; - host?: string; - backlog?: number; - path?: string; - exclusive?: boolean; - } - - export interface Server extends Socket { - listen(port: number, hostname?: string, backlog?: number, listeningListener?: Function): Server; - listen(port: number, hostname?: string, listeningListener?: Function): Server; - listen(port: number, backlog?: number, listeningListener?: Function): Server; - listen(port: number, listeningListener?: Function): Server; - listen(path: string, backlog?: number, listeningListener?: Function): Server; - listen(path: string, listeningListener?: Function): Server; - listen(handle: any, backlog?: number, listeningListener?: Function): Server; - listen(handle: any, listeningListener?: Function): Server; - listen(options: ListenOptions, listeningListener?: Function): Server; - close(callback?: Function): Server; - address(): { port: number; family: string; address: string; }; - getConnections(cb: (error: Error, count: number) => void): void; - ref(): Server; - unref(): Server; - maxConnections: number; - connections: number; - } - export function createServer(connectionListener?: (socket: Socket) =>void ): Server; - export function createServer(options?: { allowHalfOpen?: boolean; }, connectionListener?: (socket: Socket) =>void ): Server; - export function connect(options: { port: number, host?: string, localAddress? : string, localPort? : string, family? : number, allowHalfOpen?: boolean; }, connectionListener?: Function): Socket; - export function connect(port: number, host?: string, connectionListener?: Function): Socket; - export function connect(path: string, connectionListener?: Function): Socket; - export function createConnection(options: { port: number, host?: string, localAddress? : string, localPort? : string, family? : number, allowHalfOpen?: boolean; }, connectionListener?: Function): Socket; - export function createConnection(port: number, host?: string, connectionListener?: Function): Socket; - export function createConnection(path: string, connectionListener?: Function): Socket; - export function isIP(input: string): number; - export function isIPv4(input: string): boolean; - export function isIPv6(input: string): boolean; -} - -declare module "dgram" { - import * as events from "events"; - - interface RemoteInfo { - address: string; - port: number; - size: number; - } - - interface AddressInfo { - address: string; - family: string; - port: number; - } - - export function createSocket(type: string, callback?: (msg: Buffer, rinfo: RemoteInfo) => void): Socket; - - interface Socket extends events.EventEmitter { - send(buf: Buffer, offset: number, length: number, port: number, address: string, callback?: (error: Error, bytes: number) => void): void; - bind(port: number, address?: string, callback?: () => void): void; - close(): void; - address(): AddressInfo; - setBroadcast(flag: boolean): void; - setMulticastTTL(ttl: number): void; - setMulticastLoopback(flag: boolean): void; - addMembership(multicastAddress: string, multicastInterface?: string): void; - dropMembership(multicastAddress: string, multicastInterface?: string): void; - } -} - -declare module "fs" { - import * as stream from "stream"; - import * as events from "events"; - - interface Stats { - isFile(): boolean; - isDirectory(): boolean; - isBlockDevice(): boolean; - isCharacterDevice(): boolean; - isSymbolicLink(): boolean; - isFIFO(): boolean; - isSocket(): boolean; - dev: number; - ino: number; - mode: number; - nlink: number; - uid: number; - gid: number; - rdev: number; - size: number; - blksize: number; - blocks: number; - atime: Date; - mtime: Date; - ctime: Date; - birthtime: Date; - } - - interface FSWatcher extends events.EventEmitter { - close(): void; - } - - export interface ReadStream extends stream.Readable { - close(): void; - } - export interface WriteStream extends stream.Writable { - close(): void; - bytesWritten: number; - } - - /** - * Asynchronous rename. - * @param oldPath - * @param newPath - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function rename(oldPath: string, newPath: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - /** - * Synchronous rename - * @param oldPath - * @param newPath - */ - export function renameSync(oldPath: string, newPath: string): void; - export function truncate(path: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function truncate(path: string, len: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function truncateSync(path: string, len?: number): void; - export function ftruncate(fd: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function ftruncate(fd: number, len: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function ftruncateSync(fd: number, len?: number): void; - export function chown(path: string, uid: number, gid: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function chownSync(path: string, uid: number, gid: number): void; - export function fchown(fd: number, uid: number, gid: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function fchownSync(fd: number, uid: number, gid: number): void; - export function lchown(path: string, uid: number, gid: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function lchownSync(path: string, uid: number, gid: number): void; - export function chmod(path: string, mode: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function chmod(path: string, mode: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function chmodSync(path: string, mode: number): void; - export function chmodSync(path: string, mode: string): void; - export function fchmod(fd: number, mode: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function fchmod(fd: number, mode: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function fchmodSync(fd: number, mode: number): void; - export function fchmodSync(fd: number, mode: string): void; - export function lchmod(path: string, mode: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function lchmod(path: string, mode: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function lchmodSync(path: string, mode: number): void; - export function lchmodSync(path: string, mode: string): void; - export function stat(path: string, callback?: (err: NodeJS.ErrnoException, stats: Stats) => any): void; - export function lstat(path: string, callback?: (err: NodeJS.ErrnoException, stats: Stats) => any): void; - export function fstat(fd: number, callback?: (err: NodeJS.ErrnoException, stats: Stats) => any): void; - export function statSync(path: string): Stats; - export function lstatSync(path: string): Stats; - export function fstatSync(fd: number): Stats; - export function link(srcpath: string, dstpath: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function linkSync(srcpath: string, dstpath: string): void; - export function symlink(srcpath: string, dstpath: string, type?: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function symlinkSync(srcpath: string, dstpath: string, type?: string): void; - export function readlink(path: string, callback?: (err: NodeJS.ErrnoException, linkString: string) => any): void; - export function readlinkSync(path: string): string; - export function realpath(path: string, callback?: (err: NodeJS.ErrnoException, resolvedPath: string) => any): void; - export function realpath(path: string, cache: {[path: string]: string}, callback: (err: NodeJS.ErrnoException, resolvedPath: string) =>any): void; - export function realpathSync(path: string, cache?: { [path: string]: string }): string; - /* - * Asynchronous unlink - deletes the file specified in {path} - * - * @param path - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function unlink(path: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - /* - * Synchronous unlink - deletes the file specified in {path} - * - * @param path - */ - export function unlinkSync(path: string): void; - /* - * Asynchronous rmdir - removes the directory specified in {path} - * - * @param path - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function rmdir(path: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - /* - * Synchronous rmdir - removes the directory specified in {path} - * - * @param path - */ - export function rmdirSync(path: string): void; - /* - * Asynchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. - * - * @param path - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function mkdir(path: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - /* - * Asynchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. - * - * @param path - * @param mode - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function mkdir(path: string, mode: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - /* - * Asynchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. - * - * @param path - * @param mode - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function mkdir(path: string, mode: string, callback?: (err?: NodeJS.ErrnoException) => void): void; - /* - * Synchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. - * - * @param path - * @param mode - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function mkdirSync(path: string, mode?: number): void; - /* - * Synchronous mkdir - creates the directory specified in {path}. Parameter {mode} defaults to 0777. - * - * @param path - * @param mode - * @param callback No arguments other than a possible exception are given to the completion callback. - */ - export function mkdirSync(path: string, mode?: string): void; - /* - * Asynchronous mkdtemp - Creates a unique temporary directory. Generates six random characters to be appended behind a required prefix to create a unique temporary directory. - * - * @param prefix - * @param callback The created folder path is passed as a string to the callback's second parameter. - */ - export function mkdtemp(prefix: string, callback?: (err: NodeJS.ErrnoException, folder: string) => void): void; - /* - * Synchronous mkdtemp - Creates a unique temporary directory. Generates six random characters to be appended behind a required prefix to create a unique temporary directory. - * - * @param prefix - * @returns Returns the created folder path. - */ - export function mkdtempSync(prefix: string): string; - export function readdir(path: string, callback?: (err: NodeJS.ErrnoException, files: string[]) => void): void; - export function readdirSync(path: string): string[]; - export function close(fd: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function closeSync(fd: number): void; - export function open(path: string, flags: string, callback?: (err: NodeJS.ErrnoException, fd: number) => any): void; - export function open(path: string, flags: string, mode: number, callback?: (err: NodeJS.ErrnoException, fd: number) => any): void; - export function open(path: string, flags: string, mode: string, callback?: (err: NodeJS.ErrnoException, fd: number) => any): void; - export function openSync(path: string, flags: string, mode?: number): number; - export function openSync(path: string, flags: string, mode?: string): number; - export function utimes(path: string, atime: number, mtime: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function utimes(path: string, atime: Date, mtime: Date, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function utimesSync(path: string, atime: number, mtime: number): void; - export function utimesSync(path: string, atime: Date, mtime: Date): void; - export function futimes(fd: number, atime: number, mtime: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function futimes(fd: number, atime: Date, mtime: Date, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function futimesSync(fd: number, atime: number, mtime: number): void; - export function futimesSync(fd: number, atime: Date, mtime: Date): void; - export function fsync(fd: number, callback?: (err?: NodeJS.ErrnoException) => void): void; - export function fsyncSync(fd: number): void; - export function write(fd: number, buffer: Buffer, offset: number, length: number, position: number, callback?: (err: NodeJS.ErrnoException, written: number, buffer: Buffer) => void): void; - export function write(fd: number, buffer: Buffer, offset: number, length: number, callback?: (err: NodeJS.ErrnoException, written: number, buffer: Buffer) => void): void; - export function write(fd: number, data: any, callback?: (err: NodeJS.ErrnoException, written: number, str: string) => void): void; - export function write(fd: number, data: any, offset: number, callback?: (err: NodeJS.ErrnoException, written: number, str: string) => void): void; - export function write(fd: number, data: any, offset: number, encoding: string, callback?: (err: NodeJS.ErrnoException, written: number, str: string) => void): void; - export function writeSync(fd: number, buffer: Buffer, offset: number, length: number, position?: number): number; - export function writeSync(fd: number, data: any, position?: number, enconding?: string): number; - export function read(fd: number, buffer: Buffer, offset: number, length: number, position: number, callback?: (err: NodeJS.ErrnoException, bytesRead: number, buffer: Buffer) => void): void; - export function readSync(fd: number, buffer: Buffer, offset: number, length: number, position: number): number; - /* - * Asynchronous readFile - Asynchronously reads the entire contents of a file. - * - * @param fileName - * @param encoding - * @param callback - The callback is passed two arguments (err, data), where data is the contents of the file. - */ - export function readFile(filename: string, encoding: string, callback: (err: NodeJS.ErrnoException, data: string) => void): void; - /* - * Asynchronous readFile - Asynchronously reads the entire contents of a file. - * - * @param fileName - * @param options An object with optional {encoding} and {flag} properties. If {encoding} is specified, readFile returns a string; otherwise it returns a Buffer. - * @param callback - The callback is passed two arguments (err, data), where data is the contents of the file. - */ - export function readFile(filename: string, options: { encoding: string; flag?: string; }, callback: (err: NodeJS.ErrnoException, data: string) => void): void; - /* - * Asynchronous readFile - Asynchronously reads the entire contents of a file. - * - * @param fileName - * @param options An object with optional {encoding} and {flag} properties. If {encoding} is specified, readFile returns a string; otherwise it returns a Buffer. - * @param callback - The callback is passed two arguments (err, data), where data is the contents of the file. - */ - export function readFile(filename: string, options: { flag?: string; }, callback: (err: NodeJS.ErrnoException, data: Buffer) => void): void; - /* - * Asynchronous readFile - Asynchronously reads the entire contents of a file. - * - * @param fileName - * @param callback - The callback is passed two arguments (err, data), where data is the contents of the file. - */ - export function readFile(filename: string, callback: (err: NodeJS.ErrnoException, data: Buffer) => void): void; - /* - * Synchronous readFile - Synchronously reads the entire contents of a file. - * - * @param fileName - * @param encoding - */ - export function readFileSync(filename: string, encoding: string): string; - /* - * Synchronous readFile - Synchronously reads the entire contents of a file. - * - * @param fileName - * @param options An object with optional {encoding} and {flag} properties. If {encoding} is specified, readFileSync returns a string; otherwise it returns a Buffer. - */ - export function readFileSync(filename: string, options: { encoding: string; flag?: string; }): string; - /* - * Synchronous readFile - Synchronously reads the entire contents of a file. - * - * @param fileName - * @param options An object with optional {encoding} and {flag} properties. If {encoding} is specified, readFileSync returns a string; otherwise it returns a Buffer. - */ - export function readFileSync(filename: string, options?: { flag?: string; }): Buffer; - export function writeFile(filename: string, data: any, callback?: (err: NodeJS.ErrnoException) => void): void; - export function writeFile(filename: string, data: any, options: { encoding?: string; mode?: number; flag?: string; }, callback?: (err: NodeJS.ErrnoException) => void): void; - export function writeFile(filename: string, data: any, options: { encoding?: string; mode?: string; flag?: string; }, callback?: (err: NodeJS.ErrnoException) => void): void; - export function writeFileSync(filename: string, data: any, options?: { encoding?: string; mode?: number; flag?: string; }): void; - export function writeFileSync(filename: string, data: any, options?: { encoding?: string; mode?: string; flag?: string; }): void; - export function appendFile(filename: string, data: any, options: { encoding?: string; mode?: number; flag?: string; }, callback?: (err: NodeJS.ErrnoException) => void): void; - export function appendFile(filename: string, data: any, options: { encoding?: string; mode?: string; flag?: string; }, callback?: (err: NodeJS.ErrnoException) => void): void; - export function appendFile(filename: string, data: any, callback?: (err: NodeJS.ErrnoException) => void): void; - export function appendFileSync(filename: string, data: any, options?: { encoding?: string; mode?: number; flag?: string; }): void; - export function appendFileSync(filename: string, data: any, options?: { encoding?: string; mode?: string; flag?: string; }): void; - export function watchFile(filename: string, listener: (curr: Stats, prev: Stats) => void): void; - export function watchFile(filename: string, options: { persistent?: boolean; interval?: number; }, listener: (curr: Stats, prev: Stats) => void): void; - export function unwatchFile(filename: string, listener?: (curr: Stats, prev: Stats) => void): void; - export function watch(filename: string, listener?: (event: string, filename: string) => any): FSWatcher; - export function watch(filename: string, options: { persistent?: boolean; }, listener?: (event: string, filename: string) => any): FSWatcher; - export function exists(path: string, callback?: (exists: boolean) => void): void; - export function existsSync(path: string): boolean; - /** Constant for fs.access(). File is visible to the calling process. */ - export var F_OK: number; - /** Constant for fs.access(). File can be read by the calling process. */ - export var R_OK: number; - /** Constant for fs.access(). File can be written by the calling process. */ - export var W_OK: number; - /** Constant for fs.access(). File can be executed by the calling process. */ - export var X_OK: number; - /** Tests a user's permissions for the file specified by path. */ - export function access(path: string, callback: (err: NodeJS.ErrnoException) => void): void; - export function access(path: string, mode: number, callback: (err: NodeJS.ErrnoException) => void): void; - /** Synchronous version of fs.access. This throws if any accessibility checks fail, and does nothing otherwise. */ - export function accessSync(path: string, mode ?: number): void; - export function createReadStream(path: string, options?: { - flags?: string; - encoding?: string; - fd?: number; - mode?: number; - autoClose?: boolean; - }): ReadStream; - export function createWriteStream(path: string, options?: { - flags?: string; - encoding?: string; - fd?: number; - mode?: number; - }): WriteStream; -} - -declare module "path" { - - /** - * A parsed path object generated by path.parse() or consumed by path.format(). - */ - export interface ParsedPath { - /** - * The root of the path such as '/' or 'c:\' - */ - root: string; - /** - * The full directory path such as '/home/user/dir' or 'c:\path\dir' - */ - dir: string; - /** - * The file name including extension (if any) such as 'index.html' - */ - base: string; - /** - * The file extension (if any) such as '.html' - */ - ext: string; - /** - * The file name without extension (if any) such as 'index' - */ - name: string; - } - - /** - * Normalize a string path, reducing '..' and '.' parts. - * When multiple slashes are found, they're replaced by a single one; when the path contains a trailing slash, it is preserved. On Windows backslashes are used. - * - * @param p string path to normalize. - */ - export function normalize(p: string): string; - /** - * Join all arguments together and normalize the resulting path. - * Arguments must be strings. In v0.8, non-string arguments were silently ignored. In v0.10 and up, an exception is thrown. - * - * @param paths string paths to join. - */ - export function join(...paths: any[]): string; - /** - * Join all arguments together and normalize the resulting path. - * Arguments must be strings. In v0.8, non-string arguments were silently ignored. In v0.10 and up, an exception is thrown. - * - * @param paths string paths to join. - */ - export function join(...paths: string[]): string; - /** - * The right-most parameter is considered {to}. Other parameters are considered an array of {from}. - * - * Starting from leftmost {from} paramter, resolves {to} to an absolute path. - * - * If {to} isn't already absolute, {from} arguments are prepended in right to left order, until an absolute path is found. If after using all {from} paths still no absolute path is found, the current working directory is used as well. The resulting path is normalized, and trailing slashes are removed unless the path gets resolved to the root directory. - * - * @param pathSegments string paths to join. Non-string arguments are ignored. - */ - export function resolve(...pathSegments: any[]): string; - /** - * Determines whether {path} is an absolute path. An absolute path will always resolve to the same location, regardless of the working directory. - * - * @param path path to test. - */ - export function isAbsolute(path: string): boolean; - /** - * Solve the relative path from {from} to {to}. - * At times we have two absolute paths, and we need to derive the relative path from one to the other. This is actually the reverse transform of path.resolve. - * - * @param from - * @param to - */ - export function relative(from: string, to: string): string; - /** - * Return the directory name of a path. Similar to the Unix dirname command. - * - * @param p the path to evaluate. - */ - export function dirname(p: string): string; - /** - * Return the last portion of a path. Similar to the Unix basename command. - * Often used to extract the file name from a fully qualified path. - * - * @param p the path to evaluate. - * @param ext optionally, an extension to remove from the result. - */ - export function basename(p: string, ext?: string): string; - /** - * Return the extension of the path, from the last '.' to end of string in the last portion of the path. - * If there is no '.' in the last portion of the path or the first character of it is '.', then it returns an empty string - * - * @param p the path to evaluate. - */ - export function extname(p: string): string; - /** - * The platform-specific file separator. '\\' or '/'. - */ - export var sep: string; - /** - * The platform-specific file delimiter. ';' or ':'. - */ - export var delimiter: string; - /** - * Returns an object from a path string - the opposite of format(). - * - * @param pathString path to evaluate. - */ - export function parse(pathString: string): ParsedPath; - /** - * Returns a path string from an object - the opposite of parse(). - * - * @param pathString path to evaluate. - */ - export function format(pathObject: ParsedPath): string; - - export module posix { - export function normalize(p: string): string; - export function join(...paths: any[]): string; - export function resolve(...pathSegments: any[]): string; - export function isAbsolute(p: string): boolean; - export function relative(from: string, to: string): string; - export function dirname(p: string): string; - export function basename(p: string, ext?: string): string; - export function extname(p: string): string; - export var sep: string; - export var delimiter: string; - export function parse(p: string): ParsedPath; - export function format(pP: ParsedPath): string; - } - - export module win32 { - export function normalize(p: string): string; - export function join(...paths: any[]): string; - export function resolve(...pathSegments: any[]): string; - export function isAbsolute(p: string): boolean; - export function relative(from: string, to: string): string; - export function dirname(p: string): string; - export function basename(p: string, ext?: string): string; - export function extname(p: string): string; - export var sep: string; - export var delimiter: string; - export function parse(p: string): ParsedPath; - export function format(pP: ParsedPath): string; - } -} - -declare module "string_decoder" { - export interface NodeStringDecoder { - write(buffer: Buffer): string; - detectIncompleteChar(buffer: Buffer): number; - } - export var StringDecoder: { - new (encoding: string): NodeStringDecoder; - }; -} - -declare module "tls" { - import * as crypto from "crypto"; - import * as net from "net"; - import * as stream from "stream"; - - var CLIENT_RENEG_LIMIT: number; - var CLIENT_RENEG_WINDOW: number; - - export interface TlsOptions { - host?: string; - port?: number; - pfx?: any; //string or buffer - key?: any; //string or buffer - passphrase?: string; - cert?: any; - ca?: any; //string or buffer - crl?: any; //string or string array - ciphers?: string; - honorCipherOrder?: any; - requestCert?: boolean; - rejectUnauthorized?: boolean; - NPNProtocols?: any; //array or Buffer; - SNICallback?: (servername: string) => any; - } - - export interface ConnectionOptions { - host?: string; - port?: number; - socket?: net.Socket; - pfx?: string | Buffer - key?: string | Buffer - passphrase?: string; - cert?: string | Buffer - ca?: (string | Buffer)[]; - rejectUnauthorized?: boolean; - NPNProtocols?: (string | Buffer)[]; - servername?: string; - } - - export interface Server extends net.Server { - close(): Server; - address(): { port: number; family: string; address: string; }; - addContext(hostName: string, credentials: { - key: string; - cert: string; - ca: string; - }): void; - maxConnections: number; - connections: number; - } - - export interface ClearTextStream extends stream.Duplex { - authorized: boolean; - authorizationError: Error; - getPeerCertificate(): any; - getCipher: { - name: string; - version: string; - }; - address: { - port: number; - family: string; - address: string; - }; - remoteAddress: string; - remotePort: number; - } - - export interface SecurePair { - encrypted: any; - cleartext: any; - } - - export interface SecureContextOptions { - pfx?: string | Buffer; - key?: string | Buffer; - passphrase?: string; - cert?: string | Buffer; - ca?: string | Buffer; - crl?: string | string[] - ciphers?: string; - honorCipherOrder?: boolean; - } - - export interface SecureContext { - context: any; - } - - export function createServer(options: TlsOptions, secureConnectionListener?: (cleartextStream: ClearTextStream) =>void ): Server; - export function connect(options: TlsOptions, secureConnectionListener?: () =>void ): ClearTextStream; - export function connect(port: number, host?: string, options?: ConnectionOptions, secureConnectListener?: () =>void ): ClearTextStream; - export function connect(port: number, options?: ConnectionOptions, secureConnectListener?: () =>void ): ClearTextStream; - export function createSecurePair(credentials?: crypto.Credentials, isServer?: boolean, requestCert?: boolean, rejectUnauthorized?: boolean): SecurePair; - export function createSecureContext(details: SecureContextOptions): SecureContext; -} - -declare module "crypto" { - export interface CredentialDetails { - pfx: string; - key: string; - passphrase: string; - cert: string; - ca: string | string[]; - crl: string | string[]; - ciphers: string; - } - export interface Credentials { context?: any; } - export function createCredentials(details: CredentialDetails): Credentials; - export function createHash(algorithm: string): Hash; - export function createHmac(algorithm: string, key: string): Hmac; - export function createHmac(algorithm: string, key: Buffer): Hmac; - export interface Hash { - update(data: any, input_encoding?: string): Hash; - digest(encoding: 'buffer'): Buffer; - digest(encoding: string): any; - digest(): Buffer; - } - export interface Hmac extends NodeJS.ReadWriteStream { - update(data: any, input_encoding?: string): Hmac; - digest(encoding: 'buffer'): Buffer; - digest(encoding: string): any; - digest(): Buffer; - } - export function createCipher(algorithm: string, password: any): Cipher; - export function createCipheriv(algorithm: string, key: any, iv: any): Cipher; - export interface Cipher extends NodeJS.ReadWriteStream { - update(data: Buffer): Buffer; - update(data: string, input_encoding: "utf8"|"ascii"|"binary"): Buffer; - update(data: Buffer, input_encoding: any, output_encoding: "binary"|"base64"|"hex"): string; - update(data: string, input_encoding: "utf8"|"ascii"|"binary", output_encoding: "binary"|"base64"|"hex"): string; - final(): Buffer; - final(output_encoding: string): string; - setAutoPadding(auto_padding: boolean): void; - getAuthTag(): Buffer; - } - export function createDecipher(algorithm: string, password: any): Decipher; - export function createDecipheriv(algorithm: string, key: any, iv: any): Decipher; - export interface Decipher extends NodeJS.ReadWriteStream { - update(data: Buffer): Buffer; - update(data: string, input_encoding: "binary"|"base64"|"hex"): Buffer; - update(data: Buffer, input_encoding: any, output_encoding: "utf8"|"ascii"|"binary"): string; - update(data: string, input_encoding: "binary"|"base64"|"hex", output_encoding: "utf8"|"ascii"|"binary"): string; - final(): Buffer; - final(output_encoding: string): string; - setAutoPadding(auto_padding: boolean): void; - setAuthTag(tag: Buffer): void; - } - export function createSign(algorithm: string): Signer; - export interface Signer extends NodeJS.WritableStream { - update(data: any): void; - sign(private_key: string, output_format: string): string; - } - export function createVerify(algorith: string): Verify; - export interface Verify extends NodeJS.WritableStream { - update(data: any): void; - verify(object: string, signature: string, signature_format?: string): boolean; - } - export function createDiffieHellman(prime_length: number): DiffieHellman; - export function createDiffieHellman(prime: number, encoding?: string): DiffieHellman; - export interface DiffieHellman { - generateKeys(encoding?: string): string; - computeSecret(other_public_key: string, input_encoding?: string, output_encoding?: string): string; - getPrime(encoding?: string): string; - getGenerator(encoding: string): string; - getPublicKey(encoding?: string): string; - getPrivateKey(encoding?: string): string; - setPublicKey(public_key: string, encoding?: string): void; - setPrivateKey(public_key: string, encoding?: string): void; - } - export function getDiffieHellman(group_name: string): DiffieHellman; - export function pbkdf2(password: string|Buffer, salt: string|Buffer, iterations: number, keylen: number, callback: (err: Error, derivedKey: Buffer) => any): void; - export function pbkdf2(password: string|Buffer, salt: string|Buffer, iterations: number, keylen: number, digest: string, callback: (err: Error, derivedKey: Buffer) => any): void; - export function pbkdf2Sync(password: string|Buffer, salt: string|Buffer, iterations: number, keylen: number) : Buffer; - export function pbkdf2Sync(password: string|Buffer, salt: string|Buffer, iterations: number, keylen: number, digest: string) : Buffer; - export function randomBytes(size: number): Buffer; - export function randomBytes(size: number, callback: (err: Error, buf: Buffer) =>void ): void; - export function pseudoRandomBytes(size: number): Buffer; - export function pseudoRandomBytes(size: number, callback: (err: Error, buf: Buffer) =>void ): void; - export interface RsaPublicKey { - key: string; - padding?: any; - } - export interface RsaPrivateKey { - key: string; - passphrase?: string, - padding?: any; - } - export function publicEncrypt(public_key: string|RsaPublicKey, buffer: Buffer): Buffer - export function privateDecrypt(private_key: string|RsaPrivateKey, buffer: Buffer): Buffer -} - -declare module "stream" { - import * as events from "events"; - - export class Stream extends events.EventEmitter { - pipe(destination: T, options?: { end?: boolean; }): T; - } - - export interface ReadableOptions { - highWaterMark?: number; - encoding?: string; - objectMode?: boolean; - } - - export class Readable extends events.EventEmitter implements NodeJS.ReadableStream { - readable: boolean; - constructor(opts?: ReadableOptions); - _read(size: number): void; - read(size?: number): any; - setEncoding(encoding: string): void; - pause(): void; - resume(): void; - pipe(destination: T, options?: { end?: boolean; }): T; - unpipe(destination?: T): void; - unshift(chunk: any): void; - wrap(oldStream: NodeJS.ReadableStream): NodeJS.ReadableStream; - push(chunk: any, encoding?: string): boolean; - } - - export interface WritableOptions { - highWaterMark?: number; - decodeStrings?: boolean; - objectMode?: boolean; - } - - export class Writable extends events.EventEmitter implements NodeJS.WritableStream { - writable: boolean; - constructor(opts?: WritableOptions); - _write(chunk: any, encoding: string, callback: Function): void; - write(chunk: any, cb?: Function): boolean; - write(chunk: any, encoding?: string, cb?: Function): boolean; - end(): void; - end(chunk: any, cb?: Function): void; - end(chunk: any, encoding?: string, cb?: Function): void; - } - - export interface DuplexOptions extends ReadableOptions, WritableOptions { - allowHalfOpen?: boolean; - } - - // Note: Duplex extends both Readable and Writable. - export class Duplex extends Readable implements NodeJS.ReadWriteStream { - writable: boolean; - constructor(opts?: DuplexOptions); - _write(chunk: any, encoding: string, callback: Function): void; - write(chunk: any, cb?: Function): boolean; - write(chunk: any, encoding?: string, cb?: Function): boolean; - end(): void; - end(chunk: any, cb?: Function): void; - end(chunk: any, encoding?: string, cb?: Function): void; - } - - export interface TransformOptions extends ReadableOptions, WritableOptions {} - - // Note: Transform lacks the _read and _write methods of Readable/Writable. - export class Transform extends events.EventEmitter implements NodeJS.ReadWriteStream { - readable: boolean; - writable: boolean; - constructor(opts?: TransformOptions); - _transform(chunk: any, encoding: string, callback: Function): void; - _flush(callback: Function): void; - read(size?: number): any; - setEncoding(encoding: string): void; - pause(): void; - resume(): void; - pipe(destination: T, options?: { end?: boolean; }): T; - unpipe(destination?: T): void; - unshift(chunk: any): void; - wrap(oldStream: NodeJS.ReadableStream): NodeJS.ReadableStream; - push(chunk: any, encoding?: string): boolean; - write(chunk: any, cb?: Function): boolean; - write(chunk: any, encoding?: string, cb?: Function): boolean; - end(): void; - end(chunk: any, cb?: Function): void; - end(chunk: any, encoding?: string, cb?: Function): void; - } - - export class PassThrough extends Transform {} -} - -declare module "util" { - export interface InspectOptions { - showHidden?: boolean; - depth?: number; - colors?: boolean; - customInspect?: boolean; - } - - export function format(format: any, ...param: any[]): string; - export function debug(string: string): void; - export function error(...param: any[]): void; - export function puts(...param: any[]): void; - export function print(...param: any[]): void; - export function log(string: string): void; - export function inspect(object: any, showHidden?: boolean, depth?: number, color?: boolean): string; - export function inspect(object: any, options: InspectOptions): string; - export function isArray(object: any): boolean; - export function isRegExp(object: any): boolean; - export function isDate(object: any): boolean; - export function isError(object: any): boolean; - export function inherits(constructor: any, superConstructor: any): void; - export function debuglog(key:string): (msg:string,...param: any[])=>void; -} - -declare module "assert" { - function internal (value: any, message?: string): void; - namespace internal { - export class AssertionError implements Error { - name: string; - message: string; - actual: any; - expected: any; - operator: string; - generatedMessage: boolean; - - constructor(options?: {message?: string; actual?: any; expected?: any; - operator?: string; stackStartFunction?: Function}); - } - - export function fail(actual?: any, expected?: any, message?: string, operator?: string): void; - export function ok(value: any, message?: string): void; - export function equal(actual: any, expected: any, message?: string): void; - export function notEqual(actual: any, expected: any, message?: string): void; - export function deepEqual(actual: any, expected: any, message?: string): void; - export function notDeepEqual(acutal: any, expected: any, message?: string): void; - export function strictEqual(actual: any, expected: any, message?: string): void; - export function notStrictEqual(actual: any, expected: any, message?: string): void; - export function deepStrictEqual(actual: any, expected: any, message?: string): void; - export function notDeepStrictEqual(actual: any, expected: any, message?: string): void; - export var throws: { - (block: Function, message?: string): void; - (block: Function, error: Function, message?: string): void; - (block: Function, error: RegExp, message?: string): void; - (block: Function, error: (err: any) => boolean, message?: string): void; - }; - - export var doesNotThrow: { - (block: Function, message?: string): void; - (block: Function, error: Function, message?: string): void; - (block: Function, error: RegExp, message?: string): void; - (block: Function, error: (err: any) => boolean, message?: string): void; - }; - - export function ifError(value: any): void; - } - - export = internal; -} - -declare module "tty" { - import * as net from "net"; - - export function isatty(fd: number): boolean; - export interface ReadStream extends net.Socket { - isRaw: boolean; - setRawMode(mode: boolean): void; - isTTY: boolean; - } - export interface WriteStream extends net.Socket { - columns: number; - rows: number; - isTTY: boolean; - } -} - -declare module "domain" { - import * as events from "events"; - - export class Domain extends events.EventEmitter implements NodeJS.Domain { - run(fn: Function): void; - add(emitter: events.EventEmitter): void; - remove(emitter: events.EventEmitter): void; - bind(cb: (err: Error, data: any) => any): any; - intercept(cb: (data: any) => any): any; - dispose(): void; - } - - export function create(): Domain; -} - -declare module "constants" { - export var E2BIG: number; - export var EACCES: number; - export var EADDRINUSE: number; - export var EADDRNOTAVAIL: number; - export var EAFNOSUPPORT: number; - export var EAGAIN: number; - export var EALREADY: number; - export var EBADF: number; - export var EBADMSG: number; - export var EBUSY: number; - export var ECANCELED: number; - export var ECHILD: number; - export var ECONNABORTED: number; - export var ECONNREFUSED: number; - export var ECONNRESET: number; - export var EDEADLK: number; - export var EDESTADDRREQ: number; - export var EDOM: number; - export var EEXIST: number; - export var EFAULT: number; - export var EFBIG: number; - export var EHOSTUNREACH: number; - export var EIDRM: number; - export var EILSEQ: number; - export var EINPROGRESS: number; - export var EINTR: number; - export var EINVAL: number; - export var EIO: number; - export var EISCONN: number; - export var EISDIR: number; - export var ELOOP: number; - export var EMFILE: number; - export var EMLINK: number; - export var EMSGSIZE: number; - export var ENAMETOOLONG: number; - export var ENETDOWN: number; - export var ENETRESET: number; - export var ENETUNREACH: number; - export var ENFILE: number; - export var ENOBUFS: number; - export var ENODATA: number; - export var ENODEV: number; - export var ENOENT: number; - export var ENOEXEC: number; - export var ENOLCK: number; - export var ENOLINK: number; - export var ENOMEM: number; - export var ENOMSG: number; - export var ENOPROTOOPT: number; - export var ENOSPC: number; - export var ENOSR: number; - export var ENOSTR: number; - export var ENOSYS: number; - export var ENOTCONN: number; - export var ENOTDIR: number; - export var ENOTEMPTY: number; - export var ENOTSOCK: number; - export var ENOTSUP: number; - export var ENOTTY: number; - export var ENXIO: number; - export var EOPNOTSUPP: number; - export var EOVERFLOW: number; - export var EPERM: number; - export var EPIPE: number; - export var EPROTO: number; - export var EPROTONOSUPPORT: number; - export var EPROTOTYPE: number; - export var ERANGE: number; - export var EROFS: number; - export var ESPIPE: number; - export var ESRCH: number; - export var ETIME: number; - export var ETIMEDOUT: number; - export var ETXTBSY: number; - export var EWOULDBLOCK: number; - export var EXDEV: number; - export var WSAEINTR: number; - export var WSAEBADF: number; - export var WSAEACCES: number; - export var WSAEFAULT: number; - export var WSAEINVAL: number; - export var WSAEMFILE: number; - export var WSAEWOULDBLOCK: number; - export var WSAEINPROGRESS: number; - export var WSAEALREADY: number; - export var WSAENOTSOCK: number; - export var WSAEDESTADDRREQ: number; - export var WSAEMSGSIZE: number; - export var WSAEPROTOTYPE: number; - export var WSAENOPROTOOPT: number; - export var WSAEPROTONOSUPPORT: number; - export var WSAESOCKTNOSUPPORT: number; - export var WSAEOPNOTSUPP: number; - export var WSAEPFNOSUPPORT: number; - export var WSAEAFNOSUPPORT: number; - export var WSAEADDRINUSE: number; - export var WSAEADDRNOTAVAIL: number; - export var WSAENETDOWN: number; - export var WSAENETUNREACH: number; - export var WSAENETRESET: number; - export var WSAECONNABORTED: number; - export var WSAECONNRESET: number; - export var WSAENOBUFS: number; - export var WSAEISCONN: number; - export var WSAENOTCONN: number; - export var WSAESHUTDOWN: number; - export var WSAETOOMANYREFS: number; - export var WSAETIMEDOUT: number; - export var WSAECONNREFUSED: number; - export var WSAELOOP: number; - export var WSAENAMETOOLONG: number; - export var WSAEHOSTDOWN: number; - export var WSAEHOSTUNREACH: number; - export var WSAENOTEMPTY: number; - export var WSAEPROCLIM: number; - export var WSAEUSERS: number; - export var WSAEDQUOT: number; - export var WSAESTALE: number; - export var WSAEREMOTE: number; - export var WSASYSNOTREADY: number; - export var WSAVERNOTSUPPORTED: number; - export var WSANOTINITIALISED: number; - export var WSAEDISCON: number; - export var WSAENOMORE: number; - export var WSAECANCELLED: number; - export var WSAEINVALIDPROCTABLE: number; - export var WSAEINVALIDPROVIDER: number; - export var WSAEPROVIDERFAILEDINIT: number; - export var WSASYSCALLFAILURE: number; - export var WSASERVICE_NOT_FOUND: number; - export var WSATYPE_NOT_FOUND: number; - export var WSA_E_NO_MORE: number; - export var WSA_E_CANCELLED: number; - export var WSAEREFUSED: number; - export var SIGHUP: number; - export var SIGINT: number; - export var SIGILL: number; - export var SIGABRT: number; - export var SIGFPE: number; - export var SIGKILL: number; - export var SIGSEGV: number; - export var SIGTERM: number; - export var SIGBREAK: number; - export var SIGWINCH: number; - export var SSL_OP_ALL: number; - export var SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION: number; - export var SSL_OP_CIPHER_SERVER_PREFERENCE: number; - export var SSL_OP_CISCO_ANYCONNECT: number; - export var SSL_OP_COOKIE_EXCHANGE: number; - export var SSL_OP_CRYPTOPRO_TLSEXT_BUG: number; - export var SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS: number; - export var SSL_OP_EPHEMERAL_RSA: number; - export var SSL_OP_LEGACY_SERVER_CONNECT: number; - export var SSL_OP_MICROSOFT_BIG_SSLV3_BUFFER: number; - export var SSL_OP_MICROSOFT_SESS_ID_BUG: number; - export var SSL_OP_MSIE_SSLV2_RSA_PADDING: number; - export var SSL_OP_NETSCAPE_CA_DN_BUG: number; - export var SSL_OP_NETSCAPE_CHALLENGE_BUG: number; - export var SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG: number; - export var SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG: number; - export var SSL_OP_NO_COMPRESSION: number; - export var SSL_OP_NO_QUERY_MTU: number; - export var SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION: number; - export var SSL_OP_NO_SSLv2: number; - export var SSL_OP_NO_SSLv3: number; - export var SSL_OP_NO_TICKET: number; - export var SSL_OP_NO_TLSv1: number; - export var SSL_OP_NO_TLSv1_1: number; - export var SSL_OP_NO_TLSv1_2: number; - export var SSL_OP_PKCS1_CHECK_1: number; - export var SSL_OP_PKCS1_CHECK_2: number; - export var SSL_OP_SINGLE_DH_USE: number; - export var SSL_OP_SINGLE_ECDH_USE: number; - export var SSL_OP_SSLEAY_080_CLIENT_DH_BUG: number; - export var SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG: number; - export var SSL_OP_TLS_BLOCK_PADDING_BUG: number; - export var SSL_OP_TLS_D5_BUG: number; - export var SSL_OP_TLS_ROLLBACK_BUG: number; - export var ENGINE_METHOD_DSA: number; - export var ENGINE_METHOD_DH: number; - export var ENGINE_METHOD_RAND: number; - export var ENGINE_METHOD_ECDH: number; - export var ENGINE_METHOD_ECDSA: number; - export var ENGINE_METHOD_CIPHERS: number; - export var ENGINE_METHOD_DIGESTS: number; - export var ENGINE_METHOD_STORE: number; - export var ENGINE_METHOD_PKEY_METHS: number; - export var ENGINE_METHOD_PKEY_ASN1_METHS: number; - export var ENGINE_METHOD_ALL: number; - export var ENGINE_METHOD_NONE: number; - export var DH_CHECK_P_NOT_SAFE_PRIME: number; - export var DH_CHECK_P_NOT_PRIME: number; - export var DH_UNABLE_TO_CHECK_GENERATOR: number; - export var DH_NOT_SUITABLE_GENERATOR: number; - export var NPN_ENABLED: number; - export var RSA_PKCS1_PADDING: number; - export var RSA_SSLV23_PADDING: number; - export var RSA_NO_PADDING: number; - export var RSA_PKCS1_OAEP_PADDING: number; - export var RSA_X931_PADDING: number; - export var RSA_PKCS1_PSS_PADDING: number; - export var POINT_CONVERSION_COMPRESSED: number; - export var POINT_CONVERSION_UNCOMPRESSED: number; - export var POINT_CONVERSION_HYBRID: number; - export var O_RDONLY: number; - export var O_WRONLY: number; - export var O_RDWR: number; - export var S_IFMT: number; - export var S_IFREG: number; - export var S_IFDIR: number; - export var S_IFCHR: number; - export var S_IFLNK: number; - export var O_CREAT: number; - export var O_EXCL: number; - export var O_TRUNC: number; - export var O_APPEND: number; - export var F_OK: number; - export var R_OK: number; - export var W_OK: number; - export var X_OK: number; - export var UV_UDP_REUSEADDR: number; -} \ No newline at end of file diff --git a/samples/react-organisationchart/typings/react/react-addons-shallow-compare.d.ts b/samples/react-organisationchart/typings/react/react-addons-shallow-compare.d.ts deleted file mode 100644 index 4fb9aa846..000000000 --- a/samples/react-organisationchart/typings/react/react-addons-shallow-compare.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -// Type definitions for React v0.14 (react-addons-css-transition-group) -// Project: http://facebook.github.io/react/ -// Definitions by: Asana , AssureSign , Microsoft -// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped - -/// - -declare namespace __React { - namespace __Addons { - export function shallowCompare( - component: __React.Component, - nextProps: P, - nextState: S): boolean; - } -} - -declare module "react-addons-shallow-compare" { - export = __React.__Addons.shallowCompare; -} diff --git a/samples/react-organisationchart/typings/react/react-addons-test-utils.d.ts b/samples/react-organisationchart/typings/react/react-addons-test-utils.d.ts deleted file mode 100644 index 3b77ac4c5..000000000 --- a/samples/react-organisationchart/typings/react/react-addons-test-utils.d.ts +++ /dev/null @@ -1,155 +0,0 @@ -// Type definitions for React v0.14 (react-addons-test-utils) -// Project: http://facebook.github.io/react/ -// Definitions by: Asana , AssureSign , Microsoft -// Definitions: https://github.com/borisyankov/DefinitelyTyped - -/// - -declare namespace __React { - interface SyntheticEventData { - altKey?: boolean; - button?: number; - buttons?: number; - clientX?: number; - clientY?: number; - changedTouches?: TouchList; - charCode?: boolean; - clipboardData?: DataTransfer; - ctrlKey?: boolean; - deltaMode?: number; - deltaX?: number; - deltaY?: number; - deltaZ?: number; - detail?: number; - getModifierState?(key: string): boolean; - key?: string; - keyCode?: number; - locale?: string; - location?: number; - metaKey?: boolean; - pageX?: number; - pageY?: number; - relatedTarget?: EventTarget; - repeat?: boolean; - screenX?: number; - screenY?: number; - shiftKey?: boolean; - targetTouches?: TouchList; - touches?: TouchList; - view?: AbstractView; - which?: number; - } - - interface EventSimulator { - (element: Element, eventData?: SyntheticEventData): void; - (component: Component, eventData?: SyntheticEventData): void; - } - - interface MockedComponentClass { - new(): any; - } - - class ShallowRenderer { - getRenderOutput>(): E; - getRenderOutput(): ReactElement; - render(element: ReactElement, context?: any): void; - unmount(): void; - } - - namespace __Addons { - namespace TestUtils { - namespace Simulate { - export var blur: EventSimulator; - export var change: EventSimulator; - export var click: EventSimulator; - export var cut: EventSimulator; - export var doubleClick: EventSimulator; - export var drag: EventSimulator; - export var dragEnd: EventSimulator; - export var dragEnter: EventSimulator; - export var dragExit: EventSimulator; - export var dragLeave: EventSimulator; - export var dragOver: EventSimulator; - export var dragStart: EventSimulator; - export var drop: EventSimulator; - export var focus: EventSimulator; - export var input: EventSimulator; - export var keyDown: EventSimulator; - export var keyPress: EventSimulator; - export var keyUp: EventSimulator; - export var mouseDown: EventSimulator; - export var mouseEnter: EventSimulator; - export var mouseLeave: EventSimulator; - export var mouseMove: EventSimulator; - export var mouseOut: EventSimulator; - export var mouseOver: EventSimulator; - export var mouseUp: EventSimulator; - export var paste: EventSimulator; - export var scroll: EventSimulator; - export var submit: EventSimulator; - export var touchCancel: EventSimulator; - export var touchEnd: EventSimulator; - export var touchMove: EventSimulator; - export var touchStart: EventSimulator; - export var wheel: EventSimulator; - } - - export function renderIntoDocument( - element: DOMElement): Element; - export function renderIntoDocument

( - element: ReactElement

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

( - root: Component, - type: ComponentClass

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

( - root: Component, - type: ComponentClass

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

( - element: DOMElement

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

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

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

( - parentComponent: Component, - nextElement: DOMElement

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

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

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

> { - type: string | ComponentClass

| StatelessComponent

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

extends ReactElement

{ - type: ClassicComponentClass

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

> extends ReactElement

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

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

; - } - - interface ClassicFactory

extends Factory

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

; - } - - interface DOMFactory

> extends Factory

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

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

; - - function createFactory

(type: string): DOMFactory

; - function createFactory

(type: ClassicComponentClass

): ClassicFactory

; - function createFactory

(type: ComponentClass

| StatelessComponent

): Factory

; - - function createElement

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

; - function createElement

( - type: ClassicComponentClass

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

; - function createElement

( - type: ComponentClass

| StatelessComponent

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

; - - function cloneElement

( - element: DOMElement

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

; - function cloneElement

( - element: ClassicElement

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

; - function cloneElement

( - element: ReactElement

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

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

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

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

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

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

extends ComponentClass

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