timeoutWith.d.ts 181 B

123456
  1. import { timeoutWith } from '../../operator/timeoutWith';
  2. declare module 'rxjs/internal/Observable' {
  3. interface Observable<T> {
  4. timeoutWith: typeof timeoutWith;
  5. }
  6. }