Commit 925b8ba 1 parent d6b5fe0 commit 925b8ba Copy full SHA for 925b8ba
File tree 1 file changed +4
-4
lines changed
lib/sessionManager/stores
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ function getStorageValue(key: string): unknown | undefined {
15
15
}
16
16
17
17
/**
18
- * Provides a memory based session manager implementation for the browser.
18
+ * Provides a chrome.store.local based session manager implementation for the browser.
19
19
* @class ChromeStore
20
20
*/
21
21
export class ChromeStore < V = StorageKeys > implements SessionManager < V > {
@@ -28,7 +28,7 @@ export class ChromeStore<V = StorageKeys> implements SessionManager<V> {
28
28
}
29
29
30
30
/**
31
- * Sets the provided key-value store to the memory cache .
31
+ * Sets the provided key-value store to the chrome.store.local .
32
32
* @param {string } itemKey
33
33
* @param {unknown } itemValue
34
34
* @returns {void }
@@ -56,7 +56,7 @@ export class ChromeStore<V = StorageKeys> implements SessionManager<V> {
56
56
}
57
57
58
58
/**
59
- * Gets the item for the provided key from the memory cache.
59
+ * Gets the item for the provided key from the chrome.store.local cache.
60
60
* @param {string } itemKey
61
61
* @returns {unknown | null }
62
62
*/
@@ -78,7 +78,7 @@ export class ChromeStore<V = StorageKeys> implements SessionManager<V> {
78
78
}
79
79
80
80
/**
81
- * Removes the item for the provided key from the memory cache.
81
+ * Removes the item for the provided key from the chrome.store.local cache.
82
82
* @param {string } itemKey
83
83
* @returns {void }
84
84
*/
You can’t perform that action at this time.
0 commit comments