MCPcopy
hub / github.com/anthropics/claude-code / GitHubComment

Interface GitHubComment

scripts/backfill-duplicate-comments.ts:19–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17}
18
19interface GitHubComment {
20 id: number;
21 body: string;
22 created_at: string;
23 user: { type: string; id: number };
24}
25
26async function githubRequest<T>(endpoint: string, token: string, method: string = 'GET', body?: any): Promise<T> {
27 const response = await fetch(`https://api.github.com${endpoint}`, {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected