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