remotion
Version:
Render videos in React
10 lines • 417 B
TypeScript
import { FC, PropsWithChildren } from 'react';
import { SequenceProps } from '../sequencing';
declare type StaggerChildProps = PropsWithChildren<{
durationInFrames: number;
offset?: number;
} & Pick<SequenceProps, 'layout' | 'name'>>;
declare const StaggerChild: ({ children }: StaggerChildProps) => JSX.Element;
declare const Stagger: FC;
export { Stagger, StaggerChild };
//# sourceMappingURL=index.d.ts.map