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