combineLatest.d.ts 213 Bytes
Newer Older
Patiphan Marak's avatar
Patiphan Marak committed
1 2 3 4 5 6
import { combineLatest as combineLatestStatic } from '../../observable/combineLatest';
declare module '../../Observable' {
    namespace Observable {
        let combineLatest: typeof combineLatestStatic;
    }
}