File tree Expand file tree Collapse file tree 1 file changed +32
-1
lines changed
Expand file tree Collapse file tree 1 file changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,41 @@ interface IGist {
1616
1717interface 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
2556interface GistFile {
You can’t perform that action at this time.
0 commit comments