MCPcopy Create free account
hub / github.com/chokcoco/iCSS / GitHubIssue

Interface GitHubIssue

website/app/lib/github.ts:3–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { cache } from './cache';
2
3interface GitHubIssue {
4 id: number;
5 number: number;
6 title: string;
7 body: string;
8 created_at: string;
9 updated_at: string;
10 user: {
11 login: string;
12 avatar_url: string;
13 };
14 comments: number;
15 reactions: {
16 total_count: number;
17 };
18 labels: Array<{
19 name: string;
20 color: string;
21 }>;
22}
23
24interface Article {
25 id: number;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected