add default index.js

This commit is contained in:
Jakob Haider 2024-03-13 08:37:46 +01:00
parent cd10395d4f
commit ae33bf535b

33
index.js Normal file
View File

@ -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) {
}
};