We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
bundle
clipboard
1 parent e48bb3e commit 4f88c3fCopy full SHA for 4f88c3f
.changes/api-clipboard-export.md
@@ -0,0 +1,6 @@
1
+---
2
+"api": patch
3
4
+
5
6
+`bundle` now exports `clipboard` module so you can `import { clipboard } from "@tauri-apps/api"`.
tooling/api/src/bundle.ts
@@ -7,6 +7,7 @@
7
import 'regenerator-runtime/runtime'
8
import * as app from './app'
9
import * as cli from './cli'
10
+import * as clipboard from './clipboard'
11
import * as dialog from './dialog'
12
import * as event from './event'
13
import * as fs from './fs'
@@ -24,6 +25,7 @@ const invoke = tauri.invoke
24
25
export {
26
app,
27
cli,
28
+ clipboard,
29
dialog,
30
event,
31
fs,
0 commit comments