postiz-app/apps/extension/src/utils/load.storage.ts
2025-05-12 19:20:30 +07:00

6 lines
130 B
TypeScript

export const fetchStorage = (key: string) => {
return chrome.runtime.sendMessage({
action: "loadStorage",
key,
});
};