Files
SymphonyElectron/js/enums/api.js
2018-01-18 14:55:11 +05:30

26 lines
494 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
});
module.exports = {
cmds: cmds,
apiName: 'symphony-api'
};