@remotion/studio
Version:
APIs for interacting with the Remotion Studio
18 lines (17 loc) • 515 B
TypeScript
import type { TSequence } from 'remotion';
type Track = {
sequence: TSequence;
depth: number;
};
export type TrackWithHash = Track & {
hash: string;
};
export type TrackWithHashAndOriginalTimings = TrackWithHash & {
hash: string;
cascadedStart: number;
cascadedDuration: number;
};
export declare const getTimelineSequenceSequenceSortKey: (track: TrackWithHash, tracks: TrackWithHash[], sameHashes?: {
[hash: string]: string[];
}, nonceRanks?: Map<string, number>) => string;
export {};