We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5030ed8 + 63f7158 commit f009b86Copy full SHA for f009b86
src/storageWrappers/LocalForageWrapper.ts
@@ -29,6 +29,9 @@ export class LocalForageWrapper
29
interface LocalForageInterface {
30
// Actual type definition: https://github.com/localForage/localForage/blob/master/typings/localforage.d.ts#L17
31
getItem(key: string): Promise<string | null>;
32
- setItem(key: string, value: string | object | null): Promise<void>;
+ setItem(
33
+ key: string,
34
+ value: string | object | null,
35
+ ): Promise<string | object | null>;
36
removeItem(key: string): Promise<void>;
37
}
0 commit comments