-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathtypes.ts
More file actions
68 lines (61 loc) · 1.32 KB
/
types.ts
File metadata and controls
68 lines (61 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import { IGarmrClient } from '../garmr';
export interface GitHubRepositoryOwner {
login: string;
avatar_url: string;
}
export interface GitHubRepository {
id: number;
name: string;
full_name: string;
html_url: string;
description: string | null;
owner: GitHubRepositoryOwner;
}
export interface GitHubSearchResponse {
total_count: number;
items: GitHubRepository[];
}
export interface GQLGitHubRepository {
id: string;
owner: string;
name: string;
fullName: string;
url: string;
image: string;
description: string | null;
}
export type GitHubUserRepository = {
id: number;
name: string;
full_name: string;
html_url: string;
description: string | null;
owner: GitHubRepositoryOwner;
stargazers_count: number;
forks_count: number;
language: string | null;
fork: boolean;
updated_at: string;
};
export type GQLGitHubUserRepository = {
id: string;
owner: string;
name: string;
fullName: string;
url: string;
description: string | null;
stars: number;
forks: number;
language: string | null;
updatedAt: string;
};
export interface IGitHubClient extends IGarmrClient {
searchRepositories(
query: string,
limit?: number,
): Promise<GitHubSearchResponse>;
listUserRepositories(
username: string,
limit?: number,
): Promise<GitHubUserRepository[]>;
}