spotify-ts-wrapper
Version:
Spotify TypeScript wrapper.
16 lines • 329 B
TypeScript
export interface PodcastShow {
id?: string;
name?: string;
type?: string;
episodes?: PodcastEpisodes[];
}
interface PodcastEpisodes {
title?: string;
type?: string;
description?: string;
image?: string;
contentRating?: string;
date?: string;
}
export {};
//# sourceMappingURL=Show.d.ts.map