OpenCut/apps/web/src/timeline/playhead-snap-source.ts

11 lines
254 B
TypeScript

import type { SnapPoint } from "@/timeline/snapping";
import type { MediaTime } from "@/wasm";
export function getPlayheadSnapPoints({
playheadTime,
}: {
playheadTime: MediaTime;
}): SnapPoint[] {
return [{ time: playheadTime, type: "playhead" }];
}