concatAll.d.ts 165 Bytes
import { concatAll } from '../../operator/concatAll';
declare module '../../Observable' {
    interface Observable<T> {
        concatAll: typeof concatAll;
    }
}