Skip to content

Commit f76727c

Browse files
committed
Remove implicit any from the storage
1 parent 51e289f commit f76727c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/frontend/storage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export function removeVersion<T extends { version: unknown }>(data: T): Omit<T,
2626
}
2727

2828
export class InMemoryStorage {
29-
private data = {};
29+
private data: { [s: string]: string } = {};
3030

3131
public getItem(name: string): string {
3232
return this.data[name];

0 commit comments

Comments
 (0)