From ae33bf535b6e4573b2a0c259f2be7b15c843875b Mon Sep 17 00:00:00 2001 From: Jakob Haider Date: Wed, 13 Mar 2024 08:37:46 +0100 Subject: [PATCH] add default index.js --- index.js | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 index.js diff --git a/index.js b/index.js new file mode 100644 index 0000000..5959b11 --- /dev/null +++ b/index.js @@ -0,0 +1,33 @@ +module.exports = { + /** + * An initial action will be available if the app was cold-launched + * from an action. + * + * The first caller of `popInitialAction` will get the initial + * action object, or `null`. Subsequent invocations will return null. + */ + popInitialAction: function() { + + }, + + /** + * Adds shortcut items to application + */ + setShortcutItems: function(items) { + + }, + + /** + * Clears all previously set dynamic icons + */ + clearShortcutItems: function() { + + }, + + /** + * Check if quick actions are supported + */ + isSupported: function(callback) { + + } +};