fix: type error

This commit is contained in:
Baptiste Grob
2020-11-04 16:01:48 +01:00
parent bb20648bb3
commit 786f668669

View File

@@ -34,7 +34,7 @@ export class WebDeviceInterface extends DeviceInterface {
} }
async getRawStorageValue(key: string) { async getRawStorageValue(key: string) {
return localStorage.getItem(key); return localStorage.getItem(key) as any;
} }
async getAllRawStorageKeyValues() { async getAllRawStorageKeyValues() {