We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66148cb commit da69c16Copy full SHA for da69c16
src/internal/observable/of.ts
@@ -26,7 +26,6 @@ export function of<T, T2, T3, T4, T5, T6, T7, T8>(a: T, b: T2, c: T3, d: T4, e:
26
/** @deprecated use {@link scheduled} instead `scheduled([a, b, c], scheduler)` */
27
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):
28
Observable<T | T2 | T3 | T4 | T5 | T6 | T7 | T8 | T9>;
29
-/** @deprecated use {@link scheduled} instead `scheduled([a, b, c], scheduler)` */
30
export function of<T>(...args: (T | SchedulerLike)[]): Observable<T>;
31
32
// TODO(benlesh): Update the typings for this when we can switch to TS 3.x
0 commit comments