mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-12-29 02:11:28 -06:00
25 lines
475 B
JavaScript
25 lines
475 B
JavaScript
'use strict';
|
|
|
|
let keyMirror = require('keymirror');
|
|
|
|
/**
|
|
* Set of APIs exposed to the remote object
|
|
* @type {Object}
|
|
*/
|
|
const cmds = keyMirror({
|
|
isOnline: null,
|
|
registerLogger: null,
|
|
setBadgeCount: null,
|
|
badgeDataUrl: null,
|
|
activate: null,
|
|
registerBoundsChange: null,
|
|
registerProtocolHandler: null,
|
|
registerActivityDetection: null,
|
|
showNotificationSettings: null,
|
|
});
|
|
|
|
module.exports = {
|
|
cmds: cmds,
|
|
apiName: 'symphony-api'
|
|
};
|