From 6ba3145ed97cbd00dcf59a1ec611a73a3709bbff Mon Sep 17 00:00:00 2001 From: Ulysse Manceron Date: Mon, 9 Oct 2023 23:20:03 -0700 Subject: [PATCH] Update spotify-api.d.ts PagingObject next and previous are both nullable string, according to the api. --- src/typings/spotify-api.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/typings/spotify-api.d.ts b/src/typings/spotify-api.d.ts index 3260e70..f5ceffc 100644 --- a/src/typings/spotify-api.d.ts +++ b/src/typings/spotify-api.d.ts @@ -940,9 +940,9 @@ declare namespace SpotifyApi { href: string; items: T[]; limit: number; - next: string; + next: string | null; offset: number; - previous: string; + previous: string | null; total: number; }