Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

timeInterval.d.ts 288B

1234567
  1. import { SchedulerLike, OperatorFunction } from '../types';
  2. export declare function timeInterval<T>(scheduler?: SchedulerLike): OperatorFunction<T, TimeInterval<T>>;
  3. export declare class TimeInterval<T> {
  4. value: T;
  5. interval: number;
  6. constructor(value: T, interval: number);
  7. }