From 4d773bc4c5b98f356a2cc82e0d586b50aaed4b00 Mon Sep 17 00:00:00 2001 From: David Driscoll Date: Wed, 4 May 2016 13:15:54 -0400 Subject: [PATCH] chore(typings): removed implicit Array signature for combineAll and zipAll The implicit definition for combineAll / zipAll cannot properly infer the resulting type. See #1677 for more information. --- src/operator/combineAll.ts | 1 - src/operator/zipAll.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/operator/combineAll.ts b/src/operator/combineAll.ts index 3ea3f06566..da2a0dde1c 100644 --- a/src/operator/combineAll.ts +++ b/src/operator/combineAll.ts @@ -46,6 +46,5 @@ export function combineAll(project?: (...values: Array) => R): Observabl } export interface CombineAllSignature { - (): Observable; (project?: (...values: Array) => R): Observable; } diff --git a/src/operator/zipAll.ts b/src/operator/zipAll.ts index 6565e36147..f71cfb462d 100644 --- a/src/operator/zipAll.ts +++ b/src/operator/zipAll.ts @@ -12,6 +12,5 @@ export function zipAll(project?: (...values: Array) => R): Observable } export interface ZipAllSignature { - (): Observable; (project?: (...values: Array) => R): Observable; }