fix(desktop): add native clipboard image paste and fix text paste (#12682)

This commit is contained in:
Abdul Rahman ArM 2026-02-08 16:54:09 +05:30 committed by GitHub
commit d5036cf01f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 47 additions and 1 deletions

View file

@ -65,6 +65,9 @@ export type Platform = {
/** Check if an editor app exists (desktop only) */
checkAppExists?(appName: string): Promise<boolean>
/** Read image from clipboard (desktop only) */
readClipboardImage?(): Promise<File | null>
}
export const { use: usePlatform, provider: PlatformProvider } = createSimpleContext({