UNPKG

@gerhobbelt/mathjax-third-party-extensions

Version:

A list of MathJax extensions provided by third-party contributors

8 lines (7 loc) 288 B
import { SchedulerLike, OperatorFunction } from '../types'; export declare function timeInterval<T>(scheduler?: SchedulerLike): OperatorFunction<T, TimeInterval<T>>; export declare class TimeInterval<T> { value: T; interval: number; constructor(value: T, interval: number); }