fix: address review comments

- Simplify track_progress description to be more general
- Move import to top of types.ts file
This commit is contained in:
km-anthropic
2025-08-28 14:46:22 -07:00
parent dbdd70852d
commit 92ba9fb7bf
2 changed files with 4 additions and 2 deletions

View File

@@ -1,3 +1,5 @@
import type { GitHubContext } from "../github/context";
export type CommonFields = {
repository: string;
claudeCommentId: string;
@@ -99,5 +101,5 @@ export type EventData =
// Combined type with separate eventData field
export type PreparedContext = CommonFields & {
eventData: EventData;
githubContext?: import("../github/context").GitHubContext;
githubContext?: GitHubContext;
};