We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2acea7 commit a2fb2bdCopy full SHA for a2fb2bd
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@bundeling/app-sdk",
3
- "version": "1.0.0",
+ "version": "1.0.1",
4
"description": "Bundeling App SDK provides functions used for creating plugins inside the app.",
5
"main": "src/index.js",
6
"scripts": {
src/index.js
@@ -1,3 +1,5 @@
+import navigate from "./navigate";
+
export {default as navigate} from "./navigate";
export let appdetails = {
@@ -45,4 +47,13 @@ export function alert(title, content) {
45
47
46
48
export function toast(title, content) {
49
return sendToApp("toast", { title, content });
50
+}
51
52
+export default {
53
+ navigate: navigate,
54
+ openFile: openFile,
55
+ shareUrl: shareUrl,
56
+ openUrl: openUrl,
57
+ alert: alert,
58
+ toast: toast
59
}
0 commit comments