Skip to content

Commit

Permalink
fix(of): remove deprecation comment to prevent false positive warning (
Browse files Browse the repository at this point in the history
  • Loading branch information
evertbouw authored and BioPhoton committed May 15, 2019
1 parent 40e4833 commit 2575851
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/internal/observable/of.ts
Expand Up @@ -26,7 +26,6 @@ export function of<T, T2, T3, T4, T5, T6, T7, T8>(a: T, b: T2, c: T3, d: T4, e:
/** @deprecated use {@link scheduled} instead `scheduled([a, b, c], scheduler)` */
export function of<T, T2, T3, T4, T5, T6, T7, T8, T9>(a: T, b: T2, c: T3, d: T4, e: T5, f: T6, g: T7, h: T8, i: T9, scheduler: SchedulerLike):
Observable<T | T2 | T3 | T4 | T5 | T6 | T7 | T8 | T9>;
/** @deprecated use {@link scheduled} instead `scheduled([a, b, c], scheduler)` */
export function of<T>(...args: (T | SchedulerLike)[]): Observable<T>;

// TODO(benlesh): Update the typings for this when we can switch to TS 3.x
Expand Down

0 comments on commit 2575851

Please sign in to comment.