_.mjs -> index.mjs, fix storage callback doc

This commit is contained in:
dragonwocky 2021-11-30 18:12:04 +11:00
parent 19c2da54c3
commit 80a4b66128
2 changed files with 3 additions and 5 deletions

View File

@ -68,7 +68,7 @@ export const set = (path, value) => {
}
chrome.storage.local.set({ [namespace]: values[namespace] }, () => {
_onChangeListeners.forEach((listener) =>
listener({ type: 'set', path: pathClone, new: value, old })
listener({ path: pathClone, new: value, old })
);
res(value);
});
@ -113,9 +113,7 @@ export const removeChangeListener = (callback) => {
/**
* @callback onStorageChangeCallback
* @param {object} event
* @param {string} event.type - 'set' or 'reset'
* @param {string} event.namespace- the name of the store, e.g. a mod id
* @param {string} [event.key] - the key associated with the changed value
* @param {string} event.path- the path of keys to the changed value
* @param {string} [event.new] - the new value being persisted to the store
* @param {string} [event.old] - the previous value associated with the key
*/

View File

@ -13,7 +13,7 @@
signedIn = localStorage['LRU:KeyValueStore2:current-user-id'];
if (site || page || (whitelisted && signedIn)) {
const api = await import(chrome.runtime.getURL('api/_.mjs')),
const api = await import(chrome.runtime.getURL('api/index.mjs')),
{ fs, registry, web } = api;
for (const mod of await registry.list((mod) => registry.enabled(mod.id))) {