ultrawidify/src/ext/lib/comms/Comms.ts

19 lines
363 B
TypeScript
Raw Normal View History

2021-03-06 01:23:58 +01:00
import Debug from '../../conf/Debug';
import BrowserDetect from '../../conf/BrowserDetect';
if (process.env.CHANNEL !== 'stable'){
console.info("Loading Comms");
}
class Comms {
static async sendMessage(message){
chrome.runtime.sendMessage(message);
2021-03-06 01:23:58 +01:00
}
}
if (process.env.CHANNEL !== 'stable'){
console.info("Comms loaded");
}
export default Comms;