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