Skip to content

Commit ee8c9d2

Browse files
committed
format typings
1 parent 6c149ed commit ee8c9d2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/typings/spotify-api.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -741,8 +741,7 @@ declare namespace SpotifyApi {
741741
* GET /v1/me/shows
742742
* https://developer.spotify.com/documentation/web-api/reference/library/get-users-saved-shows/
743743
*/
744-
interface ListOfUsersShowsResponse
745-
extends PagingObject<SavedShowObject> {}
744+
interface ListOfUsersShowsResponse extends PagingObject<SavedShowObject> {}
746745

747746
/**
748747
* Save shows for user

src/typings/spotify-web-api.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1606,7 +1606,9 @@ declare namespace SpotifyWebApi {
16061606
* @throws {Error} If the implementation being set doesn't conform with Promises/A+
16071607
* @return {void}
16081608
*/
1609-
setPromiseImplementation(promiseImplementation: Record<PropertyKey, any>): void;
1609+
setPromiseImplementation(
1610+
promiseImplementation: Record<PropertyKey, any>
1611+
): void;
16101612
}
16111613
}
16121614

0 commit comments

Comments
 (0)