File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,10 @@ export function ignoreNotificationThreadSubscription(
135135 *
136136 * Endpoint documentation: https://docs.github.com/en/rest/commits/commits#get-a-commit
137137 */
138- export function getCommit ( url : Link , token : Token ) : Promise < AxiosResponse < RawCommit > > {
138+ export function getCommit (
139+ url : Link ,
140+ token : Token ,
141+ ) : Promise < AxiosResponse < RawCommit > > {
139142 return apiRequestAuth ( url , 'GET' , token ) ;
140143}
141144
@@ -157,7 +160,10 @@ export function getCommitComment(
157160 *
158161 * Endpoint documentation: https://docs.github.com/en/rest/releases/releases#get-a-release
159162 */
160- export function getRelease ( url : Link , token : Token ) : Promise < AxiosResponse < RawRelease > > {
163+ export function getRelease (
164+ url : Link ,
165+ token : Token ,
166+ ) : Promise < AxiosResponse < RawRelease > > {
161167 return apiRequestAuth ( url , 'GET' , token ) ;
162168}
163169
You can’t perform that action at this time.
0 commit comments