maintenance
This commit is contained in:
@@ -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');
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user