remotion
Version:
Make videos programmatically
14 lines (13 loc) • 533 B
TypeScript
import React from 'react';
import type { LogLevel } from './log.js';
export declare const RemotionRootContexts: React.FC<{
readonly children: React.ReactNode;
readonly numberOfAudioTags: number;
readonly logLevel: LogLevel;
readonly audioLatencyHint: AudioContextLatencyCategory;
readonly previewSampleRate: number | null;
readonly videoEnabled: boolean;
readonly audioEnabled: boolean;
readonly frameState: Record<string, number> | null;
readonly _experimentalKeepAudioContextAlive: boolean;
}>;