7 lines
189 B
TypeScript
7 lines
189 B
TypeScript
import { combineLatest } from '../../operator/combineLatest';
|
|
declare module 'rxjs/internal/Observable' {
|
|
interface Observable<T> {
|
|
combineLatest: typeof combineLatest;
|
|
}
|
|
}
|