Files
SymphonyElectron/js/enums/api.js
2018-01-23 13:47:17 +05:30

27 lines
518 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,
sanitize: null,
bringToFront: null
});
module.exports = {
cmds: cmds,
apiName: 'symphony-api'
};