Skip to content

Commit f009b86

Browse files
authoredAug 12, 2021
Merge pull request #441 from wodCZ/master
fix(types): fix localforage interface
2 parents 5030ed8 + 63f7158 commit f009b86

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/storageWrappers/LocalForageWrapper.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ export class LocalForageWrapper
2929
interface LocalForageInterface {
3030
// Actual type definition: https://github.com/localForage/localForage/blob/master/typings/localforage.d.ts#L17
3131
getItem(key: string): Promise<string | null>;
32-
setItem(key: string, value: string | object | null): Promise<void>;
32+
setItem(
33+
key: string,
34+
value: string | object | null,
35+
): Promise<string | object | null>;
3336
removeItem(key: string): Promise<void>;
3437
}

0 commit comments

Comments
 (0)
Please sign in to comment.