UNPKG

@remotion/player

Version:

React component for embedding a Remotion preview into your app

16 lines (15 loc) 565 B
import type { ComponentType, LazyExoticComponent } from 'react'; import React from 'react'; import type { TimelineContextValue } from 'remotion'; export declare const PLAYER_COMP_ID = "player-comp"; export declare const SharedPlayerContexts: React.FC<{ children: React.ReactNode; timelineContext: TimelineContextValue; fps: number; compositionWidth: number; compositionHeight: number; durationInFrames: number; component: LazyExoticComponent<ComponentType<unknown>>; numberOfSharedAudioTags: number; initiallyMuted: boolean; }>;