@ng-web-apis/common
Version:
A set of common utils for consuming Web APIs with Angular
8 lines (7 loc) • 303 B
TypeScript
import { InjectionToken } from '@angular/core';
import { Observable } from 'rxjs';
export declare const WA_ANIMATION_FRAME: InjectionToken<Observable<number>>;
/**
* @deprecated: drop in v5.0, use {@link WA_ANIMATION_FRAME}
*/
export declare const ANIMATION_FRAME: InjectionToken<Observable<number>>;