mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-09-14 11:39:05 +00:00
11 lines
274 B
TypeScript
11 lines
274 B
TypeScript
|
|
import { Observable } from '../../Observable';
|
|
import { combineLatest } from '../../operator/combineLatest';
|
|
|
|
Observable.prototype.combineLatest = combineLatest;
|
|
|
|
declare module '../../Observable' {
|
|
interface Observable<T> {
|
|
combineLatest: typeof combineLatest;
|
|
}
|
|
} |