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