mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 12:55:00 +00:00
feat: expose clipboard apis (#2932)
This commit is contained in:
@@ -80,6 +80,15 @@ export abstract class UIHandlerManager extends HandlerManager<
|
||||
UIHandlers
|
||||
> {}
|
||||
|
||||
type ClipboardHandlers = {
|
||||
copyAsPng: (dataURL: string) => Promise<void>;
|
||||
};
|
||||
|
||||
export abstract class ClipboardHandlerManager extends HandlerManager<
|
||||
'clipboard',
|
||||
ClipboardHandlers
|
||||
> {}
|
||||
|
||||
type ExportHandlers = {
|
||||
savePDFFileAs: (title: string) => Promise<any>;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user