This commit is contained in:
Adria Navarro 2024-12-27 09:27:40 +01:00
parent b67966a9fb
commit b600a2763d
1 changed files with 2 additions and 2 deletions

View File

@ -16,8 +16,8 @@ interface ClipboardDerivedStore {
interface ClipboardActions {
clipboard: ClipboardStore["clipboard"] & {
actions: {
copy: any
paste: any
copy: () => void
paste: (progressCallback: () => void) => Promise<void>
}
}
}