10 lines
290 B
TypeScript
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;
|