MCPcopy Create free account
hub / github.com/braintrustdata/bash-agent-evals / Issue

Interface Issue

src/data/schema.ts:34–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34export interface Issue {
35 id: number;
36 number: number;
37 title: string;
38 body: string | null;
39 state: string;
40 user: {
41 id: number;
42 login: string;
43 };
44 labels: Array<{ name: string }>;
45 created_at: string;
46 updated_at: string;
47 closed_at: string | null;
48}
49
50export interface PullRequest {
51 id: number;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected