mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 21:27:20 +00:00
feat: expose clipboard apis (#2932)
This commit is contained in:
9
apps/electron/src/main/clipboard/index.ts
Normal file
9
apps/electron/src/main/clipboard/index.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { clipboard, nativeImage } from 'electron';
|
||||
|
||||
import type { NamespaceHandlers } from '../type';
|
||||
|
||||
export const clipboardHandlers = {
|
||||
copyAsPng: async (_, dataURL: string) => {
|
||||
clipboard.writeImage(nativeImage.createFromDataURL(dataURL));
|
||||
},
|
||||
} satisfies NamespaceHandlers;
|
||||
Reference in New Issue
Block a user