SymphonyElectron/js/enums/api.js
SergeyS 9609bc7976 RTC-5104: screensharing indicator (#536)
* RTC-5104: screensharing indicator

* RTC-5104: screensharing indicator, windows fixes
2019-01-03 18:18:50 +05:30

35 lines
749 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,
openScreenPickerWindow: null,
popupMenu: null,
optimizeMemoryConsumption: null,
optimizeMemoryRegister: null,
setIsInMeeting: null,
setLocale: null,
keyPress: null,
openScreenSharingIndicator: null
});
module.exports = {
cmds: cmds,
apiName: 'symphony-api'
};