6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
export const fetchStorage = (key: string) => {
|
|
return chrome.runtime.sendMessage({
|
|
action: "loadStorage",
|
|
key,
|
|
});
|
|
};
|