import type { ClipboardEntryContent } from "./ClipboardEntryContent.js"; /** * A single entry in the Windows clipboard history. */ export type ClipboardEntry = { /** * Unique identifier assigned by Windows. */ id: string; /** * Unix epoch milliseconds (ms since 1970-01-01). */ timestamp: number; /** * Display name of the application that placed the entry on the clipboard. */ sourceAppName: string | null; /** * Base64-encoded WebP image of the app logo. */ sourceAppLogo: string | null; content: ClipboardEntryContent; }; //# sourceMappingURL=ClipboardEntry.d.ts.map