/** * Content of a clipboard entry. */ export type ClipboardEntryContent = { text: string | null; html: string | null; rtf: string | null; applicationLink: string | null; webLink: string | null; /** * Base64-encoded WebP image. */ bitmap: string | null; files: Array | null; }; //# sourceMappingURL=ClipboardEntryContent.d.ts.map