2017-08-21 16:07:50 -08:00
|
|
|
module.exports = {
|
|
|
|
|
availableExtensions: new Set([
|
2017-09-10 05:35:10 -08:00
|
|
|
'onApp',
|
|
|
|
|
'onWindow',
|
|
|
|
|
'onRendererWindow',
|
|
|
|
|
'onUnload',
|
2019-02-10 12:31:52 -09:00
|
|
|
'decorateSessionClass',
|
|
|
|
|
'decorateSessionOptions',
|
2017-09-10 05:35:10 -08:00
|
|
|
'middleware',
|
|
|
|
|
'reduceUI',
|
|
|
|
|
'reduceSessions',
|
|
|
|
|
'reduceTermGroups',
|
2017-10-19 23:16:11 -08:00
|
|
|
'decorateBrowserOptions',
|
2017-09-10 05:35:10 -08:00
|
|
|
'decorateMenu',
|
|
|
|
|
'decorateTerm',
|
|
|
|
|
'decorateHyper',
|
2017-08-21 16:07:50 -08:00
|
|
|
'decorateHyperTerm', // for backwards compatibility with hyperterm
|
2017-09-10 05:35:10 -08:00
|
|
|
'decorateHeader',
|
|
|
|
|
'decorateTerms',
|
|
|
|
|
'decorateTab',
|
|
|
|
|
'decorateNotification',
|
|
|
|
|
'decorateNotifications',
|
|
|
|
|
'decorateTabs',
|
|
|
|
|
'decorateConfig',
|
2017-11-02 18:51:18 -08:00
|
|
|
'decorateKeymaps',
|
2017-09-10 05:35:10 -08:00
|
|
|
'decorateEnv',
|
|
|
|
|
'decorateTermGroup',
|
|
|
|
|
'decorateSplitPane',
|
|
|
|
|
'getTermProps',
|
|
|
|
|
'getTabProps',
|
|
|
|
|
'getTabsProps',
|
|
|
|
|
'getTermGroupProps',
|
|
|
|
|
'mapHyperTermState',
|
|
|
|
|
'mapTermsState',
|
|
|
|
|
'mapHeaderState',
|
|
|
|
|
'mapNotificationsState',
|
|
|
|
|
'mapHyperTermDispatch',
|
|
|
|
|
'mapTermsDispatch',
|
|
|
|
|
'mapHeaderDispatch',
|
2017-11-02 18:51:18 -08:00
|
|
|
'mapNotificationsDispatch'
|
2017-08-21 16:07:50 -08:00
|
|
|
])
|
|
|
|
|
};
|