mirror of
https://github.com/thedevs-network/kutt-extension.git
synced 2026-02-03 05:43:24 +00:00
15 lines
267 B
TypeScript
15 lines
267 B
TypeScript
import browser from 'webextension-polyfill';
|
|
|
|
const messageUtil = {
|
|
send(name: string, params?: unknown): Promise<any> {
|
|
const data = {
|
|
action: name,
|
|
params,
|
|
};
|
|
|
|
return browser.runtime.sendMessage(data);
|
|
},
|
|
};
|
|
|
|
export default messageUtil;
|