Commit compiled dist for git installs

This commit is contained in:
2026-04-18 20:11:29 +10:00
parent 234d269283
commit 15c9afd630
29 changed files with 1070 additions and 1 deletions

17
dist/interfaces.js vendored Normal file
View File

@@ -0,0 +1,17 @@
/**
* In-memory storage implementation — used as the default when no storage adapter is provided.
*/
export class MemoryStorage {
constructor() {
this.store = new Map();
}
/** @inheritdoc */
getItem(key) {
return this.store.get(key) ?? null;
}
/** @inheritdoc */
setItem(key, value) {
this.store.set(key, value);
}
}
//# sourceMappingURL=interfaces.js.map