From 2575851bd22aa7cbf90724bb44e5945b13d3221c Mon Sep 17 00:00:00 2001 From: Evert Bouw Date: Fri, 10 May 2019 02:01:14 +0200 Subject: [PATCH] fix(of): remove deprecation comment to prevent false positive warning (#4724) --- src/internal/observable/of.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/internal/observable/of.ts b/src/internal/observable/of.ts index 0d1411b5d0..752d4a263e 100644 --- a/src/internal/observable/of.ts +++ b/src/internal/observable/of.ts @@ -26,7 +26,6 @@ export function of(a: T, b: T2, c: T3, d: T4, e: /** @deprecated use {@link scheduled} instead `scheduled([a, b, c], scheduler)` */ export function of(a: T, b: T2, c: T3, d: T4, e: T5, f: T6, g: T7, h: T8, i: T9, scheduler: SchedulerLike): Observable; -/** @deprecated use {@link scheduled} instead `scheduled([a, b, c], scheduler)` */ export function of(...args: (T | SchedulerLike)[]): Observable; // TODO(benlesh): Update the typings for this when we can switch to TS 3.x