1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
|
=== tests/cases/compiler/bluebirdStaticThis.ts ===
// This version is reduced from the full d.ts by removing almost all the tests
// and all the comments.
// Then it adds explicit `this` arguments to the static members.
// Tests by: Bart van der Schoor <https://github.com/Bartvds>
export declare class Promise<R> implements Promise.Thenable<R> {
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 4, 29))
>Promise.Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 4, 29))
constructor(callback: (resolve: (thenableOrResult: R | Promise.Thenable<R>) => void, reject: (error: any) => void) => void);
>callback : Symbol(callback, Decl(bluebirdStaticThis.ts, 5, 13))
>resolve : Symbol(resolve, Decl(bluebirdStaticThis.ts, 5, 24))
>thenableOrResult : Symbol(thenableOrResult, Decl(bluebirdStaticThis.ts, 5, 34))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 4, 29))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 4, 29))
>reject : Symbol(reject, Decl(bluebirdStaticThis.ts, 5, 85))
>error : Symbol(error, Decl(bluebirdStaticThis.ts, 5, 95))
static try<R>(dit: typeof Promise, fn: () => Promise.Thenable<R>, args?: any[], ctx?: any): Promise<R>;
>try : Symbol(Promise.try, Decl(bluebirdStaticThis.ts, 5, 125), Decl(bluebirdStaticThis.ts, 6, 107))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 6, 15))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 6, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>fn : Symbol(fn, Decl(bluebirdStaticThis.ts, 6, 38))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 6, 15))
>args : Symbol(args, Decl(bluebirdStaticThis.ts, 6, 69))
>ctx : Symbol(ctx, Decl(bluebirdStaticThis.ts, 6, 83))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 6, 15))
static try<R>(dit: typeof Promise, fn: () => R, args?: any[], ctx?: any): Promise<R>;
>try : Symbol(Promise.try, Decl(bluebirdStaticThis.ts, 5, 125), Decl(bluebirdStaticThis.ts, 6, 107))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 7, 15))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 7, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>fn : Symbol(fn, Decl(bluebirdStaticThis.ts, 7, 38))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 7, 15))
>args : Symbol(args, Decl(bluebirdStaticThis.ts, 7, 51))
>ctx : Symbol(ctx, Decl(bluebirdStaticThis.ts, 7, 65))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 7, 15))
static attempt<R>(dit: typeof Promise, fn: () => Promise.Thenable<R>, args?: any[], ctx?: any): Promise<R>;
>attempt : Symbol(Promise.attempt, Decl(bluebirdStaticThis.ts, 7, 89), Decl(bluebirdStaticThis.ts, 9, 111))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 9, 19))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 9, 22))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>fn : Symbol(fn, Decl(bluebirdStaticThis.ts, 9, 42))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 9, 19))
>args : Symbol(args, Decl(bluebirdStaticThis.ts, 9, 73))
>ctx : Symbol(ctx, Decl(bluebirdStaticThis.ts, 9, 87))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 9, 19))
static attempt<R>(dit: typeof Promise, fn: () => R, args?: any[], ctx?: any): Promise<R>;
>attempt : Symbol(Promise.attempt, Decl(bluebirdStaticThis.ts, 7, 89), Decl(bluebirdStaticThis.ts, 9, 111))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 10, 19))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 10, 22))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>fn : Symbol(fn, Decl(bluebirdStaticThis.ts, 10, 42))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 10, 19))
>args : Symbol(args, Decl(bluebirdStaticThis.ts, 10, 55))
>ctx : Symbol(ctx, Decl(bluebirdStaticThis.ts, 10, 69))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 10, 19))
static method(dit: typeof Promise, fn: Function): Function;
>method : Symbol(Promise.method, Decl(bluebirdStaticThis.ts, 10, 93))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 12, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>fn : Symbol(fn, Decl(bluebirdStaticThis.ts, 12, 38))
>Function : Symbol(Function, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
>Function : Symbol(Function, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
static resolve(dit: typeof Promise): Promise<void>;
>resolve : Symbol(Promise.resolve, Decl(bluebirdStaticThis.ts, 12, 63), Decl(bluebirdStaticThis.ts, 14, 55), Decl(bluebirdStaticThis.ts, 15, 83))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 14, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
static resolve<R>(dit: typeof Promise, value: Promise.Thenable<R>): Promise<R>;
>resolve : Symbol(Promise.resolve, Decl(bluebirdStaticThis.ts, 12, 63), Decl(bluebirdStaticThis.ts, 14, 55), Decl(bluebirdStaticThis.ts, 15, 83))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 15, 19))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 15, 22))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>value : Symbol(value, Decl(bluebirdStaticThis.ts, 15, 42))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 15, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 15, 19))
static resolve<R>(dit: typeof Promise, value: R): Promise<R>;
>resolve : Symbol(Promise.resolve, Decl(bluebirdStaticThis.ts, 12, 63), Decl(bluebirdStaticThis.ts, 14, 55), Decl(bluebirdStaticThis.ts, 15, 83))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 16, 19))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 16, 22))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>value : Symbol(value, Decl(bluebirdStaticThis.ts, 16, 42))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 16, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 16, 19))
static reject(dit: typeof Promise, reason: any): Promise<any>;
>reject : Symbol(Promise.reject, Decl(bluebirdStaticThis.ts, 16, 65), Decl(bluebirdStaticThis.ts, 18, 66))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 18, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>reason : Symbol(reason, Decl(bluebirdStaticThis.ts, 18, 38))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
static reject<R>(dit: typeof Promise, reason: any): Promise<R>;
>reject : Symbol(Promise.reject, Decl(bluebirdStaticThis.ts, 16, 65), Decl(bluebirdStaticThis.ts, 18, 66))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 19, 18))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 19, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>reason : Symbol(reason, Decl(bluebirdStaticThis.ts, 19, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 19, 18))
static defer<R>(dit: typeof Promise): Promise.Resolver<R>;
>defer : Symbol(Promise.defer, Decl(bluebirdStaticThis.ts, 19, 67))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 21, 17))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 21, 20))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 21, 17))
static cast<R>(dit: typeof Promise, value: Promise.Thenable<R>): Promise<R>;
>cast : Symbol(Promise.cast, Decl(bluebirdStaticThis.ts, 21, 62), Decl(bluebirdStaticThis.ts, 23, 80))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 23, 16))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 23, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>value : Symbol(value, Decl(bluebirdStaticThis.ts, 23, 39))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 23, 16))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 23, 16))
static cast<R>(dit: typeof Promise, value: R): Promise<R>;
>cast : Symbol(Promise.cast, Decl(bluebirdStaticThis.ts, 21, 62), Decl(bluebirdStaticThis.ts, 23, 80))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 24, 16))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 24, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>value : Symbol(value, Decl(bluebirdStaticThis.ts, 24, 39))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 24, 16))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 24, 16))
static bind(dit: typeof Promise, thisArg: any): Promise<void>;
>bind : Symbol(Promise.bind, Decl(bluebirdStaticThis.ts, 24, 62))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 26, 16))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>thisArg : Symbol(thisArg, Decl(bluebirdStaticThis.ts, 26, 36))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
static is(dit: typeof Promise, value: any): boolean;
>is : Symbol(Promise.is, Decl(bluebirdStaticThis.ts, 26, 66))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 28, 14))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>value : Symbol(value, Decl(bluebirdStaticThis.ts, 28, 34))
static longStackTraces(dit: typeof Promise): void;
>longStackTraces : Symbol(Promise.longStackTraces, Decl(bluebirdStaticThis.ts, 28, 56))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 30, 27))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
static delay<R>(dit: typeof Promise, value: Promise.Thenable<R>, ms: number): Promise<R>;
>delay : Symbol(Promise.delay, Decl(bluebirdStaticThis.ts, 30, 54), Decl(bluebirdStaticThis.ts, 32, 93), Decl(bluebirdStaticThis.ts, 33, 75))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 32, 17))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 32, 20))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>value : Symbol(value, Decl(bluebirdStaticThis.ts, 32, 40))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 32, 17))
>ms : Symbol(ms, Decl(bluebirdStaticThis.ts, 32, 68))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 32, 17))
static delay<R>(dit: typeof Promise, value: R, ms: number): Promise<R>;
>delay : Symbol(Promise.delay, Decl(bluebirdStaticThis.ts, 30, 54), Decl(bluebirdStaticThis.ts, 32, 93), Decl(bluebirdStaticThis.ts, 33, 75))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 33, 17))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 33, 20))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>value : Symbol(value, Decl(bluebirdStaticThis.ts, 33, 40))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 33, 17))
>ms : Symbol(ms, Decl(bluebirdStaticThis.ts, 33, 50))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 33, 17))
static delay(dit: typeof Promise, ms: number): Promise<void>;
>delay : Symbol(Promise.delay, Decl(bluebirdStaticThis.ts, 30, 54), Decl(bluebirdStaticThis.ts, 32, 93), Decl(bluebirdStaticThis.ts, 33, 75))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 34, 17))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>ms : Symbol(ms, Decl(bluebirdStaticThis.ts, 34, 37))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
static promisify(dit: typeof Promise, nodeFunction: Function, receiver?: any): Function;
>promisify : Symbol(Promise.promisify, Decl(bluebirdStaticThis.ts, 34, 65))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 36, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>nodeFunction : Symbol(nodeFunction, Decl(bluebirdStaticThis.ts, 36, 41))
>Function : Symbol(Function, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
>receiver : Symbol(receiver, Decl(bluebirdStaticThis.ts, 36, 65))
>Function : Symbol(Function, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
static promisifyAll(dit: typeof Promise, target: Object): Object;
>promisifyAll : Symbol(Promise.promisifyAll, Decl(bluebirdStaticThis.ts, 36, 92))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 38, 24))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>target : Symbol(target, Decl(bluebirdStaticThis.ts, 38, 44))
>Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
>Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
static coroutine<R>(dit: typeof Promise, generatorFunction: Function): Function;
>coroutine : Symbol(Promise.coroutine, Decl(bluebirdStaticThis.ts, 38, 69))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 40, 21))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 40, 24))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>generatorFunction : Symbol(generatorFunction, Decl(bluebirdStaticThis.ts, 40, 44))
>Function : Symbol(Function, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
>Function : Symbol(Function, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
static spawn<R>(dit: typeof Promise, generatorFunction: Function): Promise<R>;
>spawn : Symbol(Promise.spawn, Decl(bluebirdStaticThis.ts, 40, 84))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 42, 17))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 42, 20))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>generatorFunction : Symbol(generatorFunction, Decl(bluebirdStaticThis.ts, 42, 40))
>Function : Symbol(Function, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 42, 17))
static noConflict(dit: typeof Promise): typeof Promise;
>noConflict : Symbol(Promise.noConflict, Decl(bluebirdStaticThis.ts, 42, 82))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 44, 22))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
static onPossiblyUnhandledRejection(dit: typeof Promise, handler: (reason: any) => any): void;
>onPossiblyUnhandledRejection : Symbol(Promise.onPossiblyUnhandledRejection, Decl(bluebirdStaticThis.ts, 44, 59))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 46, 40))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>handler : Symbol(handler, Decl(bluebirdStaticThis.ts, 46, 60))
>reason : Symbol(reason, Decl(bluebirdStaticThis.ts, 46, 71))
static all<R>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>): Promise<R[]>;
>all : Symbol(Promise.all, Decl(bluebirdStaticThis.ts, 46, 98), Decl(bluebirdStaticThis.ts, 48, 102), Decl(bluebirdStaticThis.ts, 49, 84), Decl(bluebirdStaticThis.ts, 50, 84))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 48, 15))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 48, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 48, 38))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 48, 15))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 48, 15))
static all<R>(dit: typeof Promise, values: Promise.Thenable<R[]>): Promise<R[]>;
>all : Symbol(Promise.all, Decl(bluebirdStaticThis.ts, 46, 98), Decl(bluebirdStaticThis.ts, 48, 102), Decl(bluebirdStaticThis.ts, 49, 84), Decl(bluebirdStaticThis.ts, 50, 84))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 49, 15))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 49, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 49, 38))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 49, 15))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 49, 15))
static all<R>(dit: typeof Promise, values: Promise.Thenable<R>[]): Promise<R[]>;
>all : Symbol(Promise.all, Decl(bluebirdStaticThis.ts, 46, 98), Decl(bluebirdStaticThis.ts, 48, 102), Decl(bluebirdStaticThis.ts, 49, 84), Decl(bluebirdStaticThis.ts, 50, 84))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 50, 15))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 50, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 50, 38))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 50, 15))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 50, 15))
static all<R>(dit: typeof Promise, values: R[]): Promise<R[]>;
>all : Symbol(Promise.all, Decl(bluebirdStaticThis.ts, 46, 98), Decl(bluebirdStaticThis.ts, 48, 102), Decl(bluebirdStaticThis.ts, 49, 84), Decl(bluebirdStaticThis.ts, 50, 84))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 51, 15))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 51, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 51, 38))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 51, 15))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 51, 15))
static props(dit: typeof Promise, object: Promise<Object>): Promise<Object>;
>props : Symbol(Promise.props, Decl(bluebirdStaticThis.ts, 51, 66), Decl(bluebirdStaticThis.ts, 53, 80))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 53, 17))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>object : Symbol(object, Decl(bluebirdStaticThis.ts, 53, 37))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
static props(dit: typeof Promise, object: Object): Promise<Object>;
>props : Symbol(Promise.props, Decl(bluebirdStaticThis.ts, 51, 66), Decl(bluebirdStaticThis.ts, 53, 80))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 54, 17))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>object : Symbol(object, Decl(bluebirdStaticThis.ts, 54, 37))
>Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
static settle<R>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>): Promise<Promise.Inspection<R>[]>;
>settle : Symbol(Promise.settle, Decl(bluebirdStaticThis.ts, 54, 71), Decl(bluebirdStaticThis.ts, 56, 125), Decl(bluebirdStaticThis.ts, 57, 107), Decl(bluebirdStaticThis.ts, 58, 107))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 56, 18))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 56, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 56, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 56, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 56, 18))
static settle<R>(dit: typeof Promise, values: Promise.Thenable<R[]>): Promise<Promise.Inspection<R>[]>;
>settle : Symbol(Promise.settle, Decl(bluebirdStaticThis.ts, 54, 71), Decl(bluebirdStaticThis.ts, 56, 125), Decl(bluebirdStaticThis.ts, 57, 107), Decl(bluebirdStaticThis.ts, 58, 107))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 57, 18))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 57, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 57, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 57, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 57, 18))
static settle<R>(dit: typeof Promise, values: Promise.Thenable<R>[]): Promise<Promise.Inspection<R>[]>;
>settle : Symbol(Promise.settle, Decl(bluebirdStaticThis.ts, 54, 71), Decl(bluebirdStaticThis.ts, 56, 125), Decl(bluebirdStaticThis.ts, 57, 107), Decl(bluebirdStaticThis.ts, 58, 107))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 58, 18))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 58, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 58, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 58, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 58, 18))
static settle<R>(dit: typeof Promise, values: R[]): Promise<Promise.Inspection<R>[]>;
>settle : Symbol(Promise.settle, Decl(bluebirdStaticThis.ts, 54, 71), Decl(bluebirdStaticThis.ts, 56, 125), Decl(bluebirdStaticThis.ts, 57, 107), Decl(bluebirdStaticThis.ts, 58, 107))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 59, 18))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 59, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 59, 41))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 59, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 59, 18))
static any<R>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>): Promise<R>;
>any : Symbol(Promise.any, Decl(bluebirdStaticThis.ts, 59, 89), Decl(bluebirdStaticThis.ts, 61, 100), Decl(bluebirdStaticThis.ts, 62, 82), Decl(bluebirdStaticThis.ts, 63, 82))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 61, 15))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 61, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 61, 38))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 61, 15))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 61, 15))
static any<R>(dit: typeof Promise, values: Promise.Thenable<R[]>): Promise<R>;
>any : Symbol(Promise.any, Decl(bluebirdStaticThis.ts, 59, 89), Decl(bluebirdStaticThis.ts, 61, 100), Decl(bluebirdStaticThis.ts, 62, 82), Decl(bluebirdStaticThis.ts, 63, 82))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 62, 15))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 62, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 62, 38))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 62, 15))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 62, 15))
static any<R>(dit: typeof Promise, values: Promise.Thenable<R>[]): Promise<R>;
>any : Symbol(Promise.any, Decl(bluebirdStaticThis.ts, 59, 89), Decl(bluebirdStaticThis.ts, 61, 100), Decl(bluebirdStaticThis.ts, 62, 82), Decl(bluebirdStaticThis.ts, 63, 82))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 63, 15))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 63, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 63, 38))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 63, 15))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 63, 15))
static any<R>(dit: typeof Promise, values: R[]): Promise<R>;
>any : Symbol(Promise.any, Decl(bluebirdStaticThis.ts, 59, 89), Decl(bluebirdStaticThis.ts, 61, 100), Decl(bluebirdStaticThis.ts, 62, 82), Decl(bluebirdStaticThis.ts, 63, 82))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 64, 15))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 64, 18))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 64, 38))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 64, 15))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 64, 15))
static race<R>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>): Promise<R>;
>race : Symbol(Promise.race, Decl(bluebirdStaticThis.ts, 64, 64), Decl(bluebirdStaticThis.ts, 66, 101), Decl(bluebirdStaticThis.ts, 67, 83), Decl(bluebirdStaticThis.ts, 68, 83))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 66, 16))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 66, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 66, 39))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 66, 16))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 66, 16))
static race<R>(dit: typeof Promise, values: Promise.Thenable<R[]>): Promise<R>;
>race : Symbol(Promise.race, Decl(bluebirdStaticThis.ts, 64, 64), Decl(bluebirdStaticThis.ts, 66, 101), Decl(bluebirdStaticThis.ts, 67, 83), Decl(bluebirdStaticThis.ts, 68, 83))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 67, 16))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 67, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 67, 39))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 67, 16))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 67, 16))
static race<R>(dit: typeof Promise, values: Promise.Thenable<R>[]): Promise<R>;
>race : Symbol(Promise.race, Decl(bluebirdStaticThis.ts, 64, 64), Decl(bluebirdStaticThis.ts, 66, 101), Decl(bluebirdStaticThis.ts, 67, 83), Decl(bluebirdStaticThis.ts, 68, 83))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 68, 16))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 68, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 68, 39))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 68, 16))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 68, 16))
static race<R>(dit: typeof Promise, values: R[]): Promise<R>;
>race : Symbol(Promise.race, Decl(bluebirdStaticThis.ts, 64, 64), Decl(bluebirdStaticThis.ts, 66, 101), Decl(bluebirdStaticThis.ts, 67, 83), Decl(bluebirdStaticThis.ts, 68, 83))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 69, 16))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 69, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 69, 39))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 69, 16))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 69, 16))
static some<R>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>, count: number): Promise<R[]>;
>some : Symbol(Promise.some, Decl(bluebirdStaticThis.ts, 69, 65), Decl(bluebirdStaticThis.ts, 71, 118), Decl(bluebirdStaticThis.ts, 72, 100), Decl(bluebirdStaticThis.ts, 73, 100))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 71, 16))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 71, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 71, 39))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 71, 16))
>count : Symbol(count, Decl(bluebirdStaticThis.ts, 71, 88))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 71, 16))
static some<R>(dit: typeof Promise, values: Promise.Thenable<R[]>, count: number): Promise<R[]>;
>some : Symbol(Promise.some, Decl(bluebirdStaticThis.ts, 69, 65), Decl(bluebirdStaticThis.ts, 71, 118), Decl(bluebirdStaticThis.ts, 72, 100), Decl(bluebirdStaticThis.ts, 73, 100))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 72, 16))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 72, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 72, 39))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 72, 16))
>count : Symbol(count, Decl(bluebirdStaticThis.ts, 72, 70))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 72, 16))
static some<R>(dit: typeof Promise, values: Promise.Thenable<R>[], count: number): Promise<R[]>;
>some : Symbol(Promise.some, Decl(bluebirdStaticThis.ts, 69, 65), Decl(bluebirdStaticThis.ts, 71, 118), Decl(bluebirdStaticThis.ts, 72, 100), Decl(bluebirdStaticThis.ts, 73, 100))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 73, 16))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 73, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 73, 39))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 73, 16))
>count : Symbol(count, Decl(bluebirdStaticThis.ts, 73, 70))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 73, 16))
static some<R>(dit: typeof Promise, values: R[], count: number): Promise<R[]>;
>some : Symbol(Promise.some, Decl(bluebirdStaticThis.ts, 69, 65), Decl(bluebirdStaticThis.ts, 71, 118), Decl(bluebirdStaticThis.ts, 72, 100), Decl(bluebirdStaticThis.ts, 73, 100))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 74, 16))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 74, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 74, 39))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 74, 16))
>count : Symbol(count, Decl(bluebirdStaticThis.ts, 74, 52))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 74, 16))
static join<R>(dit: typeof Promise, ...values: Promise.Thenable<R>[]): Promise<R[]>;
>join : Symbol(Promise.join, Decl(bluebirdStaticThis.ts, 74, 82), Decl(bluebirdStaticThis.ts, 76, 88))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 76, 16))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 76, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 76, 39))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 76, 16))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 76, 16))
static join<R>(dit: typeof Promise, ...values: R[]): Promise<R[]>;
>join : Symbol(Promise.join, Decl(bluebirdStaticThis.ts, 74, 82), Decl(bluebirdStaticThis.ts, 76, 88))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 77, 16))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 77, 19))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 77, 39))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 77, 16))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 77, 16))
static map<R, U>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>, mapper: (item: R, index: number, arrayLength: number) => Promise.Thenable<U>): Promise<U[]>;
>map : Symbol(Promise.map, Decl(bluebirdStaticThis.ts, 77, 70), Decl(bluebirdStaticThis.ts, 79, 183), Decl(bluebirdStaticThis.ts, 80, 165), Decl(bluebirdStaticThis.ts, 81, 165), Decl(bluebirdStaticThis.ts, 82, 147) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 79, 15))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 79, 17))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 79, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 79, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 79, 15))
>mapper : Symbol(mapper, Decl(bluebirdStaticThis.ts, 79, 90))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 79, 100))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 79, 15))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 79, 108))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 79, 123))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 79, 17))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 79, 17))
static map<R, U>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>, mapper: (item: R, index: number, arrayLength: number) => U): Promise<U[]>;
>map : Symbol(Promise.map, Decl(bluebirdStaticThis.ts, 77, 70), Decl(bluebirdStaticThis.ts, 79, 183), Decl(bluebirdStaticThis.ts, 80, 165), Decl(bluebirdStaticThis.ts, 81, 165), Decl(bluebirdStaticThis.ts, 82, 147) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 80, 15))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 80, 17))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 80, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 80, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 80, 15))
>mapper : Symbol(mapper, Decl(bluebirdStaticThis.ts, 80, 90))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 80, 100))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 80, 15))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 80, 108))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 80, 123))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 80, 17))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 80, 17))
static map<R, U>(dit: typeof Promise, values: Promise.Thenable<R[]>, mapper: (item: R, index: number, arrayLength: number) => Promise.Thenable<U>): Promise<U[]>;
>map : Symbol(Promise.map, Decl(bluebirdStaticThis.ts, 77, 70), Decl(bluebirdStaticThis.ts, 79, 183), Decl(bluebirdStaticThis.ts, 80, 165), Decl(bluebirdStaticThis.ts, 81, 165), Decl(bluebirdStaticThis.ts, 82, 147) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 81, 15))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 81, 17))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 81, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 81, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 81, 15))
>mapper : Symbol(mapper, Decl(bluebirdStaticThis.ts, 81, 72))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 81, 82))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 81, 15))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 81, 90))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 81, 105))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 81, 17))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 81, 17))
static map<R, U>(dit: typeof Promise, values: Promise.Thenable<R[]>, mapper: (item: R, index: number, arrayLength: number) => U): Promise<U[]>;
>map : Symbol(Promise.map, Decl(bluebirdStaticThis.ts, 77, 70), Decl(bluebirdStaticThis.ts, 79, 183), Decl(bluebirdStaticThis.ts, 80, 165), Decl(bluebirdStaticThis.ts, 81, 165), Decl(bluebirdStaticThis.ts, 82, 147) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 82, 15))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 82, 17))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 82, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 82, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 82, 15))
>mapper : Symbol(mapper, Decl(bluebirdStaticThis.ts, 82, 72))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 82, 82))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 82, 15))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 82, 90))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 82, 105))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 82, 17))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 82, 17))
static map<R, U>(dit: typeof Promise, values: Promise.Thenable<R>[], mapper: (item: R, index: number, arrayLength: number) => Promise.Thenable<U>): Promise<U[]>;
>map : Symbol(Promise.map, Decl(bluebirdStaticThis.ts, 77, 70), Decl(bluebirdStaticThis.ts, 79, 183), Decl(bluebirdStaticThis.ts, 80, 165), Decl(bluebirdStaticThis.ts, 81, 165), Decl(bluebirdStaticThis.ts, 82, 147) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 83, 15))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 83, 17))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 83, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 83, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 83, 15))
>mapper : Symbol(mapper, Decl(bluebirdStaticThis.ts, 83, 72))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 83, 82))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 83, 15))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 83, 90))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 83, 105))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 83, 17))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 83, 17))
static map<R, U>(dit: typeof Promise, values: Promise.Thenable<R>[], mapper: (item: R, index: number, arrayLength: number) => U): Promise<U[]>;
>map : Symbol(Promise.map, Decl(bluebirdStaticThis.ts, 77, 70), Decl(bluebirdStaticThis.ts, 79, 183), Decl(bluebirdStaticThis.ts, 80, 165), Decl(bluebirdStaticThis.ts, 81, 165), Decl(bluebirdStaticThis.ts, 82, 147) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 84, 15))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 84, 17))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 84, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 84, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 84, 15))
>mapper : Symbol(mapper, Decl(bluebirdStaticThis.ts, 84, 72))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 84, 82))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 84, 15))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 84, 90))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 84, 105))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 84, 17))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 84, 17))
static map<R, U>(dit: typeof Promise, values: R[], mapper: (item: R, index: number, arrayLength: number) => Promise.Thenable<U>): Promise<U[]>;
>map : Symbol(Promise.map, Decl(bluebirdStaticThis.ts, 77, 70), Decl(bluebirdStaticThis.ts, 79, 183), Decl(bluebirdStaticThis.ts, 80, 165), Decl(bluebirdStaticThis.ts, 81, 165), Decl(bluebirdStaticThis.ts, 82, 147) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 85, 15))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 85, 17))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 85, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 85, 41))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 85, 15))
>mapper : Symbol(mapper, Decl(bluebirdStaticThis.ts, 85, 54))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 85, 64))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 85, 15))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 85, 72))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 85, 87))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 85, 17))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 85, 17))
static map<R, U>(dit: typeof Promise, values: R[], mapper: (item: R, index: number, arrayLength: number) => U): Promise<U[]>;
>map : Symbol(Promise.map, Decl(bluebirdStaticThis.ts, 77, 70), Decl(bluebirdStaticThis.ts, 79, 183), Decl(bluebirdStaticThis.ts, 80, 165), Decl(bluebirdStaticThis.ts, 81, 165), Decl(bluebirdStaticThis.ts, 82, 147) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 86, 15))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 86, 17))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 86, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 86, 41))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 86, 15))
>mapper : Symbol(mapper, Decl(bluebirdStaticThis.ts, 86, 54))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 86, 64))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 86, 15))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 86, 72))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 86, 87))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 86, 17))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 86, 17))
static reduce<R, U>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>, reducer: (total: U, current: R, index: number, arrayLength: number) => Promise.Thenable<U>, initialValue?: U): Promise<U>;
>reduce : Symbol(Promise.reduce, Decl(bluebirdStaticThis.ts, 86, 129), Decl(bluebirdStaticThis.ts, 88, 216), Decl(bluebirdStaticThis.ts, 89, 198), Decl(bluebirdStaticThis.ts, 91, 198), Decl(bluebirdStaticThis.ts, 92, 180) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 88, 18))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 88, 20))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 88, 24))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 88, 44))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 88, 18))
>reducer : Symbol(reducer, Decl(bluebirdStaticThis.ts, 88, 93))
>total : Symbol(total, Decl(bluebirdStaticThis.ts, 88, 104))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 88, 20))
>current : Symbol(current, Decl(bluebirdStaticThis.ts, 88, 113))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 88, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 88, 125))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 88, 140))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 88, 20))
>initialValue : Symbol(initialValue, Decl(bluebirdStaticThis.ts, 88, 185))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 88, 20))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 88, 20))
static reduce<R, U>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>, reducer: (total: U, current: R, index: number, arrayLength: number) => U, initialValue?: U): Promise<U>;
>reduce : Symbol(Promise.reduce, Decl(bluebirdStaticThis.ts, 86, 129), Decl(bluebirdStaticThis.ts, 88, 216), Decl(bluebirdStaticThis.ts, 89, 198), Decl(bluebirdStaticThis.ts, 91, 198), Decl(bluebirdStaticThis.ts, 92, 180) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 89, 18))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 89, 20))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 89, 24))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 89, 44))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 89, 18))
>reducer : Symbol(reducer, Decl(bluebirdStaticThis.ts, 89, 93))
>total : Symbol(total, Decl(bluebirdStaticThis.ts, 89, 104))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 89, 20))
>current : Symbol(current, Decl(bluebirdStaticThis.ts, 89, 113))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 89, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 89, 125))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 89, 140))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 89, 20))
>initialValue : Symbol(initialValue, Decl(bluebirdStaticThis.ts, 89, 167))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 89, 20))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 89, 20))
static reduce<R, U>(dit: typeof Promise, values: Promise.Thenable<R[]>, reducer: (total: U, current: R, index: number, arrayLength: number) => Promise.Thenable<U>, initialValue?: U): Promise<U>;
>reduce : Symbol(Promise.reduce, Decl(bluebirdStaticThis.ts, 86, 129), Decl(bluebirdStaticThis.ts, 88, 216), Decl(bluebirdStaticThis.ts, 89, 198), Decl(bluebirdStaticThis.ts, 91, 198), Decl(bluebirdStaticThis.ts, 92, 180) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 91, 18))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 91, 20))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 91, 24))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 91, 44))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 91, 18))
>reducer : Symbol(reducer, Decl(bluebirdStaticThis.ts, 91, 75))
>total : Symbol(total, Decl(bluebirdStaticThis.ts, 91, 86))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 91, 20))
>current : Symbol(current, Decl(bluebirdStaticThis.ts, 91, 95))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 91, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 91, 107))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 91, 122))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 91, 20))
>initialValue : Symbol(initialValue, Decl(bluebirdStaticThis.ts, 91, 167))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 91, 20))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 91, 20))
static reduce<R, U>(dit: typeof Promise, values: Promise.Thenable<R[]>, reducer: (total: U, current: R, index: number, arrayLength: number) => U, initialValue?: U): Promise<U>;
>reduce : Symbol(Promise.reduce, Decl(bluebirdStaticThis.ts, 86, 129), Decl(bluebirdStaticThis.ts, 88, 216), Decl(bluebirdStaticThis.ts, 89, 198), Decl(bluebirdStaticThis.ts, 91, 198), Decl(bluebirdStaticThis.ts, 92, 180) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 92, 18))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 92, 20))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 92, 24))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 92, 44))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 92, 18))
>reducer : Symbol(reducer, Decl(bluebirdStaticThis.ts, 92, 75))
>total : Symbol(total, Decl(bluebirdStaticThis.ts, 92, 86))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 92, 20))
>current : Symbol(current, Decl(bluebirdStaticThis.ts, 92, 95))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 92, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 92, 107))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 92, 122))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 92, 20))
>initialValue : Symbol(initialValue, Decl(bluebirdStaticThis.ts, 92, 149))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 92, 20))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 92, 20))
static reduce<R, U>(dit: typeof Promise, values: Promise.Thenable<R>[], reducer: (total: U, current: R, index: number, arrayLength: number) => Promise.Thenable<U>, initialValue?: U): Promise<U>;
>reduce : Symbol(Promise.reduce, Decl(bluebirdStaticThis.ts, 86, 129), Decl(bluebirdStaticThis.ts, 88, 216), Decl(bluebirdStaticThis.ts, 89, 198), Decl(bluebirdStaticThis.ts, 91, 198), Decl(bluebirdStaticThis.ts, 92, 180) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 94, 18))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 94, 20))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 94, 24))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 94, 44))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 94, 18))
>reducer : Symbol(reducer, Decl(bluebirdStaticThis.ts, 94, 75))
>total : Symbol(total, Decl(bluebirdStaticThis.ts, 94, 86))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 94, 20))
>current : Symbol(current, Decl(bluebirdStaticThis.ts, 94, 95))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 94, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 94, 107))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 94, 122))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 94, 20))
>initialValue : Symbol(initialValue, Decl(bluebirdStaticThis.ts, 94, 167))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 94, 20))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 94, 20))
static reduce<R, U>(dit: typeof Promise, values: Promise.Thenable<R>[], reducer: (total: U, current: R, index: number, arrayLength: number) => U, initialValue?: U): Promise<U>;
>reduce : Symbol(Promise.reduce, Decl(bluebirdStaticThis.ts, 86, 129), Decl(bluebirdStaticThis.ts, 88, 216), Decl(bluebirdStaticThis.ts, 89, 198), Decl(bluebirdStaticThis.ts, 91, 198), Decl(bluebirdStaticThis.ts, 92, 180) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 95, 18))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 95, 20))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 95, 24))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 95, 44))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 95, 18))
>reducer : Symbol(reducer, Decl(bluebirdStaticThis.ts, 95, 75))
>total : Symbol(total, Decl(bluebirdStaticThis.ts, 95, 86))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 95, 20))
>current : Symbol(current, Decl(bluebirdStaticThis.ts, 95, 95))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 95, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 95, 107))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 95, 122))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 95, 20))
>initialValue : Symbol(initialValue, Decl(bluebirdStaticThis.ts, 95, 149))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 95, 20))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 95, 20))
static reduce<R, U>(dit: typeof Promise, values: R[], reducer: (total: U, current: R, index: number, arrayLength: number) => Promise.Thenable<U>, initialValue?: U): Promise<U>;
>reduce : Symbol(Promise.reduce, Decl(bluebirdStaticThis.ts, 86, 129), Decl(bluebirdStaticThis.ts, 88, 216), Decl(bluebirdStaticThis.ts, 89, 198), Decl(bluebirdStaticThis.ts, 91, 198), Decl(bluebirdStaticThis.ts, 92, 180) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 97, 18))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 97, 20))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 97, 24))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 97, 44))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 97, 18))
>reducer : Symbol(reducer, Decl(bluebirdStaticThis.ts, 97, 57))
>total : Symbol(total, Decl(bluebirdStaticThis.ts, 97, 68))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 97, 20))
>current : Symbol(current, Decl(bluebirdStaticThis.ts, 97, 77))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 97, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 97, 89))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 97, 104))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 97, 20))
>initialValue : Symbol(initialValue, Decl(bluebirdStaticThis.ts, 97, 149))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 97, 20))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 97, 20))
static reduce<R, U>(dit: typeof Promise, values: R[], reducer: (total: U, current: R, index: number, arrayLength: number) => U, initialValue?: U): Promise<U>;
>reduce : Symbol(Promise.reduce, Decl(bluebirdStaticThis.ts, 86, 129), Decl(bluebirdStaticThis.ts, 88, 216), Decl(bluebirdStaticThis.ts, 89, 198), Decl(bluebirdStaticThis.ts, 91, 198), Decl(bluebirdStaticThis.ts, 92, 180) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 98, 18))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 98, 20))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 98, 24))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 98, 44))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 98, 18))
>reducer : Symbol(reducer, Decl(bluebirdStaticThis.ts, 98, 57))
>total : Symbol(total, Decl(bluebirdStaticThis.ts, 98, 68))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 98, 20))
>current : Symbol(current, Decl(bluebirdStaticThis.ts, 98, 77))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 98, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 98, 89))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 98, 104))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 98, 20))
>initialValue : Symbol(initialValue, Decl(bluebirdStaticThis.ts, 98, 131))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 98, 20))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 98, 20))
static filter<R>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>, filterer: (item: R, index: number, arrayLength: number) => Promise.Thenable<boolean>): Promise<R[]>;
>filter : Symbol(Promise.filter, Decl(bluebirdStaticThis.ts, 98, 162), Decl(bluebirdStaticThis.ts, 100, 191), Decl(bluebirdStaticThis.ts, 101, 173), Decl(bluebirdStaticThis.ts, 102, 173), Decl(bluebirdStaticThis.ts, 103, 155) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 100, 18))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 100, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 100, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 100, 18))
>filterer : Symbol(filterer, Decl(bluebirdStaticThis.ts, 100, 90))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 100, 102))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 100, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 100, 110))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 100, 125))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 100, 18))
static filter<R>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>, filterer: (item: R, index: number, arrayLength: number) => boolean): Promise<R[]>;
>filter : Symbol(Promise.filter, Decl(bluebirdStaticThis.ts, 98, 162), Decl(bluebirdStaticThis.ts, 100, 191), Decl(bluebirdStaticThis.ts, 101, 173), Decl(bluebirdStaticThis.ts, 102, 173), Decl(bluebirdStaticThis.ts, 103, 155) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 101, 18))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 101, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 101, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 101, 18))
>filterer : Symbol(filterer, Decl(bluebirdStaticThis.ts, 101, 90))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 101, 102))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 101, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 101, 110))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 101, 125))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 101, 18))
static filter<R>(dit: typeof Promise, values: Promise.Thenable<R[]>, filterer: (item: R, index: number, arrayLength: number) => Promise.Thenable<boolean>): Promise<R[]>;
>filter : Symbol(Promise.filter, Decl(bluebirdStaticThis.ts, 98, 162), Decl(bluebirdStaticThis.ts, 100, 191), Decl(bluebirdStaticThis.ts, 101, 173), Decl(bluebirdStaticThis.ts, 102, 173), Decl(bluebirdStaticThis.ts, 103, 155) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 102, 18))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 102, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 102, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 102, 18))
>filterer : Symbol(filterer, Decl(bluebirdStaticThis.ts, 102, 72))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 102, 84))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 102, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 102, 92))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 102, 107))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 102, 18))
static filter<R>(dit: typeof Promise, values: Promise.Thenable<R[]>, filterer: (item: R, index: number, arrayLength: number) => boolean): Promise<R[]>;
>filter : Symbol(Promise.filter, Decl(bluebirdStaticThis.ts, 98, 162), Decl(bluebirdStaticThis.ts, 100, 191), Decl(bluebirdStaticThis.ts, 101, 173), Decl(bluebirdStaticThis.ts, 102, 173), Decl(bluebirdStaticThis.ts, 103, 155) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 103, 18))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 103, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 103, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 103, 18))
>filterer : Symbol(filterer, Decl(bluebirdStaticThis.ts, 103, 72))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 103, 84))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 103, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 103, 92))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 103, 107))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 103, 18))
static filter<R>(dit: typeof Promise, values: Promise.Thenable<R>[], filterer: (item: R, index: number, arrayLength: number) => Promise.Thenable<boolean>): Promise<R[]>;
>filter : Symbol(Promise.filter, Decl(bluebirdStaticThis.ts, 98, 162), Decl(bluebirdStaticThis.ts, 100, 191), Decl(bluebirdStaticThis.ts, 101, 173), Decl(bluebirdStaticThis.ts, 102, 173), Decl(bluebirdStaticThis.ts, 103, 155) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 104, 18))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 104, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 104, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 104, 18))
>filterer : Symbol(filterer, Decl(bluebirdStaticThis.ts, 104, 72))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 104, 84))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 104, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 104, 92))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 104, 107))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 104, 18))
static filter<R>(dit: typeof Promise, values: Promise.Thenable<R>[], filterer: (item: R, index: number, arrayLength: number) => boolean): Promise<R[]>;
>filter : Symbol(Promise.filter, Decl(bluebirdStaticThis.ts, 98, 162), Decl(bluebirdStaticThis.ts, 100, 191), Decl(bluebirdStaticThis.ts, 101, 173), Decl(bluebirdStaticThis.ts, 102, 173), Decl(bluebirdStaticThis.ts, 103, 155) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 105, 18))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 105, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 105, 41))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 105, 18))
>filterer : Symbol(filterer, Decl(bluebirdStaticThis.ts, 105, 72))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 105, 84))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 105, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 105, 92))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 105, 107))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 105, 18))
static filter<R>(dit: typeof Promise, values: R[], filterer: (item: R, index: number, arrayLength: number) => Promise.Thenable<boolean>): Promise<R[]>;
>filter : Symbol(Promise.filter, Decl(bluebirdStaticThis.ts, 98, 162), Decl(bluebirdStaticThis.ts, 100, 191), Decl(bluebirdStaticThis.ts, 101, 173), Decl(bluebirdStaticThis.ts, 102, 173), Decl(bluebirdStaticThis.ts, 103, 155) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 106, 18))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 106, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 106, 41))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 106, 18))
>filterer : Symbol(filterer, Decl(bluebirdStaticThis.ts, 106, 54))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 106, 66))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 106, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 106, 74))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 106, 89))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Thenable : Symbol(Promise.Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 106, 18))
static filter<R>(dit: typeof Promise, values: R[], filterer: (item: R, index: number, arrayLength: number) => boolean): Promise<R[]>;
>filter : Symbol(Promise.filter, Decl(bluebirdStaticThis.ts, 98, 162), Decl(bluebirdStaticThis.ts, 100, 191), Decl(bluebirdStaticThis.ts, 101, 173), Decl(bluebirdStaticThis.ts, 102, 173), Decl(bluebirdStaticThis.ts, 103, 155) ... and 3 more)
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 107, 18))
>dit : Symbol(dit, Decl(bluebirdStaticThis.ts, 107, 21))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>values : Symbol(values, Decl(bluebirdStaticThis.ts, 107, 41))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 107, 18))
>filterer : Symbol(filterer, Decl(bluebirdStaticThis.ts, 107, 54))
>item : Symbol(item, Decl(bluebirdStaticThis.ts, 107, 66))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 107, 18))
>index : Symbol(index, Decl(bluebirdStaticThis.ts, 107, 74))
>arrayLength : Symbol(arrayLength, Decl(bluebirdStaticThis.ts, 107, 89))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 107, 18))
}
export declare module Promise {
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
export interface Thenable<R> {
>Thenable : Symbol(Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 111, 27))
then<U>(onFulfilled: (value: R) => Thenable<U>, onRejected: (error: any) => Thenable<U>): Thenable<U>;
>then : Symbol(Thenable.then, Decl(bluebirdStaticThis.ts, 111, 31), Decl(bluebirdStaticThis.ts, 112, 104), Decl(bluebirdStaticThis.ts, 113, 95), Decl(bluebirdStaticThis.ts, 114, 94))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 112, 7))
>onFulfilled : Symbol(onFulfilled, Decl(bluebirdStaticThis.ts, 112, 10))
>value : Symbol(value, Decl(bluebirdStaticThis.ts, 112, 24))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 111, 27))
>Thenable : Symbol(Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 112, 7))
>onRejected : Symbol(onRejected, Decl(bluebirdStaticThis.ts, 112, 49))
>error : Symbol(error, Decl(bluebirdStaticThis.ts, 112, 63))
>Thenable : Symbol(Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 112, 7))
>Thenable : Symbol(Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 112, 7))
then<U>(onFulfilled: (value: R) => Thenable<U>, onRejected?: (error: any) => U): Thenable<U>;
>then : Symbol(Thenable.then, Decl(bluebirdStaticThis.ts, 111, 31), Decl(bluebirdStaticThis.ts, 112, 104), Decl(bluebirdStaticThis.ts, 113, 95), Decl(bluebirdStaticThis.ts, 114, 94))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 113, 7))
>onFulfilled : Symbol(onFulfilled, Decl(bluebirdStaticThis.ts, 113, 10))
>value : Symbol(value, Decl(bluebirdStaticThis.ts, 113, 24))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 111, 27))
>Thenable : Symbol(Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 113, 7))
>onRejected : Symbol(onRejected, Decl(bluebirdStaticThis.ts, 113, 49))
>error : Symbol(error, Decl(bluebirdStaticThis.ts, 113, 64))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 113, 7))
>Thenable : Symbol(Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 113, 7))
then<U>(onFulfilled: (value: R) => U, onRejected: (error: any) => Thenable<U>): Thenable<U>;
>then : Symbol(Thenable.then, Decl(bluebirdStaticThis.ts, 111, 31), Decl(bluebirdStaticThis.ts, 112, 104), Decl(bluebirdStaticThis.ts, 113, 95), Decl(bluebirdStaticThis.ts, 114, 94))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 114, 7))
>onFulfilled : Symbol(onFulfilled, Decl(bluebirdStaticThis.ts, 114, 10))
>value : Symbol(value, Decl(bluebirdStaticThis.ts, 114, 24))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 111, 27))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 114, 7))
>onRejected : Symbol(onRejected, Decl(bluebirdStaticThis.ts, 114, 39))
>error : Symbol(error, Decl(bluebirdStaticThis.ts, 114, 53))
>Thenable : Symbol(Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 114, 7))
>Thenable : Symbol(Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 114, 7))
then<U>(onFulfilled?: (value: R) => U, onRejected?: (error: any) => U): Thenable<U>;
>then : Symbol(Thenable.then, Decl(bluebirdStaticThis.ts, 111, 31), Decl(bluebirdStaticThis.ts, 112, 104), Decl(bluebirdStaticThis.ts, 113, 95), Decl(bluebirdStaticThis.ts, 114, 94))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 115, 7))
>onFulfilled : Symbol(onFulfilled, Decl(bluebirdStaticThis.ts, 115, 10))
>value : Symbol(value, Decl(bluebirdStaticThis.ts, 115, 25))
>R : Symbol(R, Decl(bluebirdStaticThis.ts, 111, 27))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 115, 7))
>onRejected : Symbol(onRejected, Decl(bluebirdStaticThis.ts, 115, 40))
>error : Symbol(error, Decl(bluebirdStaticThis.ts, 115, 55))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 115, 7))
>Thenable : Symbol(Thenable, Decl(bluebirdStaticThis.ts, 110, 31))
>U : Symbol(U, Decl(bluebirdStaticThis.ts, 115, 7))
}
}
interface Foo {
>Foo : Symbol(Foo, Decl(bluebirdStaticThis.ts, 118, 1))
a: number;
>a : Symbol(Foo.a, Decl(bluebirdStaticThis.ts, 120, 15))
b: string;
>b : Symbol(Foo.b, Decl(bluebirdStaticThis.ts, 121, 14))
}
var x: any;
>x : Symbol(x, Decl(bluebirdStaticThis.ts, 124, 3))
var arr: any[];
>arr : Symbol(arr, Decl(bluebirdStaticThis.ts, 125, 3))
var foo: Foo;
>foo : Symbol(foo, Decl(bluebirdStaticThis.ts, 126, 3))
>Foo : Symbol(Foo, Decl(bluebirdStaticThis.ts, 118, 1))
var fooProm: Promise<Foo>;
>fooProm : Symbol(fooProm, Decl(bluebirdStaticThis.ts, 127, 3))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>Foo : Symbol(Foo, Decl(bluebirdStaticThis.ts, 118, 1))
fooProm = Promise.try(Promise, () => {
>fooProm : Symbol(fooProm, Decl(bluebirdStaticThis.ts, 127, 3))
>Promise.try : Symbol(Promise.try, Decl(bluebirdStaticThis.ts, 5, 125), Decl(bluebirdStaticThis.ts, 6, 107))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>try : Symbol(Promise.try, Decl(bluebirdStaticThis.ts, 5, 125), Decl(bluebirdStaticThis.ts, 6, 107))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
return foo;
>foo : Symbol(foo, Decl(bluebirdStaticThis.ts, 126, 3))
});
fooProm = Promise.try(Promise, () => {
>fooProm : Symbol(fooProm, Decl(bluebirdStaticThis.ts, 127, 3))
>Promise.try : Symbol(Promise.try, Decl(bluebirdStaticThis.ts, 5, 125), Decl(bluebirdStaticThis.ts, 6, 107))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>try : Symbol(Promise.try, Decl(bluebirdStaticThis.ts, 5, 125), Decl(bluebirdStaticThis.ts, 6, 107))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
return foo;
>foo : Symbol(foo, Decl(bluebirdStaticThis.ts, 126, 3))
}, arr);
>arr : Symbol(arr, Decl(bluebirdStaticThis.ts, 125, 3))
fooProm = Promise.try(Promise, () => {
>fooProm : Symbol(fooProm, Decl(bluebirdStaticThis.ts, 127, 3))
>Promise.try : Symbol(Promise.try, Decl(bluebirdStaticThis.ts, 5, 125), Decl(bluebirdStaticThis.ts, 6, 107))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
>try : Symbol(Promise.try, Decl(bluebirdStaticThis.ts, 5, 125), Decl(bluebirdStaticThis.ts, 6, 107))
>Promise : Symbol(Promise, Decl(bluebirdStaticThis.ts, 0, 0), Decl(bluebirdStaticThis.ts, 108, 1))
return foo;
>foo : Symbol(foo, Decl(bluebirdStaticThis.ts, 126, 3))
}, arr, x);
>arr : Symbol(arr, Decl(bluebirdStaticThis.ts, 125, 3))
>x : Symbol(x, Decl(bluebirdStaticThis.ts, 124, 3))
|