UNPKG

@excalidraw/excalidraw

Version:
12 lines (11 loc) 421 B
import type { StaticSceneRenderConfig } from "../scene/types"; /** throttled to animation framerate */ export declare const renderStaticSceneThrottled: { (config: StaticSceneRenderConfig): void; flush(): void; cancel(): void; }; /** * Static scene is the non-ui canvas where we render elements. */ export declare const renderStaticScene: (renderConfig: StaticSceneRenderConfig, throttle?: boolean) => void;