Skip to content

Commit 8dbc64c

Browse files
anthony-murphy-agentanthony-murphyclaude
committed
fix(driver-utils): add missing return type to policies getter
Add explicit return type to satisfy @typescript-eslint/explicit-function-return-type rule. Co-Authored-By: anthony-murphy <anthony.murphy@microsoft.com> Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 06d309d commit 8dbc64c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/loader/driver-utils/src/test/prefetchDocumentStorageService.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class MockStorageService implements Partial<IDocumentStorageService> {
5757
};
5858
}
5959

60-
public get policies() {
60+
public get policies(): undefined {
6161
return undefined;
6262
}
6363
}

0 commit comments

Comments
 (0)