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

Interface Article

website/app/lib/github.ts:24–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22}
23
24interface Article {
25 id: number;
26 title: string;
27 url: string;
28 image?: string;
29 category?: string;
30 created_at: string;
31 author: string;
32 comments: number;
33 reactions: number;
34}
35
36export class GitHubAPI {
37 private static readonly REPO_OWNER = 'chokcoco';

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected