@remcostoeten/fync
Version:
A unified TypeScript library for easy access to popular APIs (GitHub, Spotify, GitLab, etc.)
18 lines • 523 B
TypeScript
import type { TSpotifyContext } from "./spotify-common";
import type { TSpotifyTrack } from "./spotify-track";
export type TSpotifyRecentlyPlayedItem = {
track: TSpotifyTrack;
played_at: string;
context: TSpotifyContext | null;
};
export type TSpotifyRecentlyPlayedResponse = {
items: TSpotifyRecentlyPlayedItem[];
next: string | null;
cursors: {
after: string | null;
before: string | null;
};
limit: number;
href: string;
};
//# sourceMappingURL=spotify-recent.d.ts.map