Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

timeoutWith.d.ts 468 B

il y a 3 ans
12345
  1. import { IScheduler } from '../Scheduler';
  2. import { ObservableInput } from '../Observable';
  3. import { OperatorFunction, MonoTypeOperatorFunction } from '../interfaces';
  4. export declare function timeoutWith<T>(due: number | Date, withObservable: ObservableInput<T>, scheduler?: IScheduler): MonoTypeOperatorFunction<T>;
  5. export declare function timeoutWith<T, R>(due: number | Date, withObservable: ObservableInput<R>, scheduler?: IScheduler): OperatorFunction<T, T | R>;