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