add default index.js
This commit is contained in:
parent
cd10395d4f
commit
ae33bf535b
33
index.js
Normal file
33
index.js
Normal 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) {
|
||||
|
||||
}
|
||||
};
|
||||
Loading…
Reference in New Issue
Block a user