(values: any)
| 418 | } |
| 419 | |
| 420 | static all<R>(values: any): Promise<R> { |
| 421 | return ZoneAwarePromise.allWithCallback(values); |
| 422 | } |
| 423 | |
| 424 | static allSettled<R>(values: any): Promise<R> { |
| 425 | const P = this && this.prototype instanceof ZoneAwarePromise ? this : ZoneAwarePromise; |
no test coverage detected