Skip to content

Commit 21e6363

Browse files
fix type (unknown->any) on adapter too
1 parent 11e7379 commit 21e6363

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ export interface Config {
184184
componentsDir: string;
185185
};
186186
storage: {
187-
adapter: (options: unknown) => StorageAdapter;
187+
adapter: (options: any) => StorageAdapter;
188188
options: Record<string, any> & { componentsDir: string };
189189
};
190190
tempDir: string;

0 commit comments

Comments
 (0)