timeoutWith.d.ts 173 B

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