1 2 3 4 5 6 7 8 9 10 11
export const githubBaseUrl = 'https://api.github.com/repos/crupest/Timeline'; export interface IssueResponseItem { number: number; title: string; state: string; html_url: string; pull_request?: any; } export type IssueResponse = IssueResponseItem[];