shipping this slop

This commit is contained in:
Maze Winther
2026-01-20 22:14:49 +01:00
parent 7117f17ece
commit 6e4069b42f
97 changed files with 3357 additions and 1858 deletions
+3 -3
View File
@@ -4,7 +4,7 @@
*/
import { create } from "zustand";
import type { TrackType, CreateTimelineElement } from "@/types/timeline";
import type { ClipboardItem } from "@/types/timeline";
interface TimelineStore {
selectedElements: { trackId: string; elementId: string }[];
@@ -18,11 +18,11 @@ interface TimelineStore {
rippleEditingEnabled: boolean;
toggleRippleEditing: () => void;
clipboard: {
items: Array<{ trackType: TrackType; element: CreateTimelineElement }>;
items: ClipboardItem[];
} | null;
setClipboard: (
clipboard: {
items: Array<{ trackType: TrackType; element: CreateTimelineElement }>;
items: ClipboardItem[];
} | null,
) => void;
}