Files
story-studio/remotion/node_modules/@remotion/studio/dist/helpers/get-timeline-sequence-layout.d.ts
2026-02-21 10:33:18 +01:00

19 lines
656 B
TypeScript

import type { VideoConfig } from 'remotion';
export declare const SEQUENCE_BORDER_WIDTH = 1;
export declare const getTimelineSequenceLayout: ({ durationInFrames, startFrom, maxMediaDuration, startFromMedia, video, windowWidth, premountDisplay, postmountDisplay, }: {
durationInFrames: number;
startFrom: number;
startFromMedia: number;
maxMediaDuration: number | null;
video: VideoConfig;
windowWidth: number;
premountDisplay: number | null;
postmountDisplay: number | null;
}) => {
marginLeft: number;
width: number;
naturalWidth: number;
premountWidth: number | null;
postmountWidth: number | null;
};