UNPKG

dev-to-js

Version:

An universal client for the Dev.to API written in Typescript

15 lines (14 loc) 274 B
declare type Podcast = { title: string; slug: string; image_url: string; }; export declare type PodcastEpisode = { type_of: string; id: number; path: string; image_url: string; title: string; podcast: Podcast; }; export {};