remotion
Version:
Render videos in React
14 lines (13 loc) • 451 B
TypeScript
import { FC, PropsWithChildren } from 'react';
import { SequenceProps } from '../sequencing';
declare type SeriesSequenceProps = PropsWithChildren<{
durationInFrames: number;
offset?: number;
} & Pick<SequenceProps, 'layout' | 'name'>>;
declare const SeriesSequence: ({ children }: SeriesSequenceProps) => JSX.Element;
declare const Series: FC<{
children: React.ReactNode;
}> & {
Sequence: typeof SeriesSequence;
};
export { Series };