Skip to content

Commit 858f561

Browse files
committed
Update types.ts
1 parent 83cb504 commit 858f561

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

src/types.ts

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,41 @@ interface IGist {
1616

1717
interface GistResponse {
1818
url: string;
19+
forks_url: string;
20+
commits_url: string;
1921
id: string;
22+
node_id: string;
23+
git_pull_url: string;
24+
git_push_url: string;
25+
html_url: string;
26+
files: GistFile;
27+
public: boolean;
2028
created_at: string;
2129
updated_at: string;
22-
html_url: string;
30+
description: string;
31+
comments: number;
32+
comments_url: string;
33+
owner: {
34+
login: string;
35+
id: number;
36+
node_id: string;
37+
avatar_url: string;
38+
gravatar_id: string;
39+
url: string;
40+
html_url: string;
41+
followers_url: string;
42+
following_url: string;
43+
gists_url: string;
44+
starred_url: string;
45+
subscriptions_url: string;
46+
organizations_url: string;
47+
repos_url: string;
48+
events_url: string;
49+
received_events_url: string;
50+
type: string;
51+
site_admin: boolean;
52+
};
53+
truncated: boolean;
2354
}
2455

2556
interface GistFile {

0 commit comments

Comments
 (0)