Skip to content

Commit 184348d

Browse files
committed
One more missing type
1 parent 16a6ea1 commit 184348d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/basic-crawler/src/internals/basic-crawler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ export class BasicCrawler<
10741074
log: this.log,
10751075
pushData: this.pushData.bind(this),
10761076
useState: this.useState.bind(this),
1077-
getKeyValueStore: async (identifier?) => KeyValueStore.open(identifier),
1077+
getKeyValueStore: async (identifier?: StorageIdentifier) => KeyValueStore.open(identifier),
10781078
registerDeferredCleanup: (cleanup: () => Promise<unknown>) => {
10791079
deferredCleanup.push(cleanup);
10801080
},

0 commit comments

Comments
 (0)