remotion
Version:
Make videos programmatically
11 lines (10 loc) • 567 B
TypeScript
export declare const DELAY_RENDER_CALLSTACK_TOKEN = "The delayRender was called:";
export declare const DELAY_RENDER_RETRIES_LEFT = "Retries left: ";
export declare const DELAY_RENDER_RETRY_TOKEN = "- Rendering the frame will be retried.";
export declare const DELAY_RENDER_CLEAR_TOKEN = "handle was cleared after";
export type DelayRenderOptions = {
timeoutInMilliseconds?: number;
retries?: number;
};
export declare const delayRender: (label?: string, options?: DelayRenderOptions) => number;
export declare const continueRender: (handle: number) => void;