mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-05 21:54:05 -06:00
c4a3f6c024
* simplify protocol handler api * update registerProtocolHandler doc * more documentation updates
20 lines
369 B
JavaScript
20 lines
369 B
JavaScript
'use strict';
|
|
|
|
var keyMirror = require('keymirror');
|
|
|
|
const cmds = keyMirror({
|
|
isOnline: null,
|
|
registerLogger: null,
|
|
setBadgeCount: null,
|
|
badgeDataUrl: null,
|
|
activate: null,
|
|
registerBoundsChange: null,
|
|
registerProtocolHandler: null,
|
|
registerActivityDetection: null,
|
|
});
|
|
|
|
module.exports = {
|
|
cmds: cmds,
|
|
apiName: 'symphony-api'
|
|
};
|