UNPKG

414 BTypeScriptView Raw
1import type { Container } from "./Container";
2/**
3 * @category Core
4 */
5export declare class FrameManager {
6 private readonly container;
7 constructor(container: Container);
8 /**
9 * Handles the rAF method preparing the next animation frame to be drawn
10 * limiting it if it's needed by the current configuration
11 * @param timestamp
12 */
13 nextFrame(timestamp: DOMHighResTimeStamp): void;
14}