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