-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #152 from apollographql/internalize-zen-observable…
…-types Internalize `zen-observable` types and drop `@types/zen-observable` dependency
- Loading branch information
Showing
4 changed files
with
60 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
import Observable = require("zen-observable"); | ||
export { Observable }; | ||
export type Observer<T> = ZenObservable.Observer<T>; | ||
export type Subscription = ZenObservable.Subscription; | ||
export type Subscriber<T> = ZenObservable.Subscriber<T>; | ||
export * from "./module"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,58 @@ | ||
export * from "./index"; | ||
export interface Subscription { | ||
closed: boolean; | ||
unsubscribe(): void; | ||
} | ||
|
||
interface SubscriptionObserver<T> { | ||
closed: boolean; | ||
next(value: T): void; | ||
error(errorValue: any): void; | ||
complete(): void; | ||
} | ||
|
||
export interface Observer<T> { | ||
start?(subscription: Subscription): any; | ||
next?(value: T): void; | ||
error?(errorValue: any): void; | ||
complete?(): void; | ||
} | ||
|
||
export type Subscriber<T> = ( | ||
observer: SubscriptionObserver<T>, | ||
) => void | (() => void) | Subscription; | ||
|
||
interface ObservableLike<T> { | ||
subscribe?: Subscriber<T> | undefined; | ||
[Symbol.observable](): Observable<T> | ObservableLike<T>; | ||
} | ||
|
||
export declare class Observable<T> { | ||
constructor(subscriber: Subscriber<T>); | ||
|
||
// For backwards compatibility when super(subscriber) is transpiled to | ||
// Observable.call(this, subscriber), which typically happens when the | ||
// Observable class is compiled to ES5 function contructor syntax. | ||
static call<R>(instance: Observable<R>, subscriber: Subscriber<R>): undefined; | ||
static apply<R>(instance: Observable<R>, args: IArguments | [Subscriber<R>]): undefined; | ||
|
||
subscribe(observer: Observer<T>): Subscription; | ||
subscribe( | ||
onNext: (value: T) => void, | ||
onError?: (error: any) => void, | ||
onComplete?: () => void, | ||
): Subscription; | ||
|
||
[Symbol.observable](): Observable<T>; | ||
|
||
forEach(callback: (value: T) => void): Promise<void>; | ||
map<R>(callback: (value: T) => R): Observable<R>; | ||
filter<S extends T>(callback: (value: T) => value is S): Observable<S>; | ||
filter(callback: (value: T) => boolean): Observable<T>; | ||
reduce(callback: (previousValue: T, currentValue: T) => T, initialValue?: T): Observable<T>; | ||
reduce<R>(callback: (previousValue: R, currentValue: T) => R, initialValue?: R): Observable<R>; | ||
flatMap<R>(callback: (value: T) => ObservableLike<R>): Observable<R>; | ||
concat<R>(...observable: Array<Observable<R>>): Observable<R>; | ||
|
||
static from<R>(observable: Observable<R> | ObservableLike<R> | ArrayLike<R>): Observable<R>; | ||
static of<R>(...items: R[]): Observable<R>; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters