Skip to content

Commit

Permalink
- fix interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Idrinth committed Dec 6, 2023
1 parent c13082c commit 7c56408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default {
}
writeFileSync(cachefolder + sep + key, value,);
},
async clean(): void {
async clean(): Promise<void> {
if (existsSync(cachefolder,)) {
await fsExtra.emptyDir(cachefolder,);
rmdirSync(cachefolder,);
Expand Down

0 comments on commit 7c56408

Please sign in to comment.