@remcostoeten/fync
Version:
Unified TypeScript library for 9 popular APIs with consistent functional architecture
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