concat.ts 259 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import { Observable } from '../../Observable'; import { concat as concatStatic } from '../../observable/concat'; Observable.concat = concatStatic; declare module '../../Observable' { namespace Observable { export let concat: typeof concatStatic; } }