maintenance

This commit is contained in:
2025-09-04 20:25:15 -04:00
parent 1469c7f52f
commit e8f2df9e69
214 changed files with 8507 additions and 1836 deletions

View File

@@ -5,15 +5,15 @@ export class IndexedDB implements IUserDataStore {
return 'indexedDB' in window;
}
public getItem(key: string): string | null {
public getItem(ignoredKey: string): string | null {
throw new Error('Not Implemented');
}
public setItem(key: string, value: string): void {
public setItem(ignoredKey: string, ignoredValue: string): void {
throw new Error('Not Implemented');
}
public removeItem(key: string): void {
public removeItem(ignoredKey: string): void {
throw new Error('Not Implemented');
}

View File

@@ -5,15 +5,15 @@ export class LocalStorage implements IUserDataStore {
return 'localStorage' in window;
}
public getItem(key: string): string | null {
public getItem(ignoredKey: string): string | null {
throw new Error('Not Implemented');
}
public setItem(key: string, value: string): void {
public setItem(ignoredKey: string, ignoredValue: string): void {
throw new Error('Not Implemented');
}
public removeItem(key: string): void {
public removeItem(ignoredKey: string): void {
throw new Error('Not Implemented');
}

View File

@@ -5,15 +5,15 @@ export class ObjectStrore implements IUserDataStore {
return true;
}
public getItem(key: string): string | null {
public getItem(ignoredKey: string): string | null {
throw new Error('Not Implemented');
}
public setItem(key: string, value: string): void {
public setItem(ignoredKey: string, ignoredValue: string): void {
throw new Error('Not Implemented');
}
public removeItem(key: string): void {
public removeItem(ignoredKey: string): void {
throw new Error('Not Implemented');
}