UNPKG

dev-to-js

Version:

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

15 lines (13 loc) 232 B
type Podcast = { title: string, slug: string, image_url: string, } export type PodcastEpisode = { type_of: string, id: number, path: string, image_url: string, title: string, podcast: Podcast, }