export interface ClipboardEntry { id: number; content: string; content_type: "text" | "image" | "file"; created_at: string; pinned: boolean; content_hash: string; } export interface Settings { launch_at_login: boolean; show_images: boolean; max_history: number; window_position: "cursor" | "center" | "top-right" | "top-left" | "bottom-right" | "bottom-left"; window_width: number; window_height: number; }