aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/todo/todo-service/http-entities.ts
blob: 3971617c2974a0743a2ed467e7aa4b69a4ef208b (plain)
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[];