notifications implementation (#34)

* wip: notifications

* wip: more notifications

* wip: add getter to proxy

* wip: add setter

* wip: add static getter and method

* wip: add event handlers

* wip: add doc

* wip: add api demo
This commit is contained in:
Lynn
2017-03-21 09:15:18 -07:00
committed by GitHub
parent 939d083653
commit 0dfa3339a3
16 changed files with 1646 additions and 10 deletions

View File

@@ -7,10 +7,23 @@ const cmds = keyMirror({
open: null,
registerLogger: null,
setBadgeCount: null,
badgeDataUrl: null,
badgeDataUrl: null
});
const proxyCmds = keyMirror({
createObject: null,
addEvent: null,
removeEvent: null,
eventCallback: null,
invokeMethod: null,
invokeResult: null,
get: null,
getResult: null,
set: null
});
module.exports = {
cmds: cmds,
proxyCmds: proxyCmds,
apiName: 'symphony-api'
}