UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

12 lines (11 loc) 346 B
import { Action } from './Action'; import { FutureAction } from './FutureAction'; /** * We need this JSDoc comment for affecting ESDoc. * @ignore * @extends {Ignored} */ export declare class AnimationFrameAction<T> extends FutureAction<T> { protected _schedule(state?: T, delay?: number): Action<T>; protected _unsubscribe(): void; }