Files
clawbot/skills/remotion-prompt-video/node_modules/@remotion/media-parser/dist/find-last-keyframe.d.ts
T

6 lines
220 B
TypeScript

import type { MediaParserKeyframe } from './options';
export declare function findLastKeyframe<T extends MediaParserKeyframe>({ keyframes, timeInSeconds, }: {
keyframes: T[];
timeInSeconds: number;
}): T | null;