Enforce stronger types for ArrayBuffers and storage

This commit is contained in:
Fedor Indutny
2021-06-14 17:09:37 -07:00
committed by GitHub
parent 61ac79e9ae
commit 8f5086227a
56 changed files with 748 additions and 675 deletions
+2 -2
View File
@@ -118,10 +118,10 @@ describe('ChallengeHandler', () => {
expireAfter,
storage: {
get(key) {
get(key: string) {
return storage.get(key);
},
async put(key, value) {
async put(key: string, value: unknown) {
storage.set(key, value);
},
},