Files
story-studio/remotion/node_modules/@remotion/web-renderer/dist/background-keepalive.d.ts
2026-02-21 10:33:18 +01:00

10 lines
290 B
TypeScript

import { type LogLevel } from 'remotion';
export type BackgroundKeepalive = {
waitForTick: () => Promise<void>;
[Symbol.dispose]: () => void;
};
export declare function createBackgroundKeepalive({ fps, logLevel }: {
fps: number;
logLevel: LogLevel;
}): BackgroundKeepalive;