dev-to-js
Version:
An universal client for the Dev.to API written in Typescript
10 lines (9 loc) • 311 B
TypeScript
import { Base, Pagination } from '../base';
import { PodcastEpisode } from './types';
declare type SearchTagsParams = Pagination & {
username?: string;
};
export declare class PodcastEpisodes extends Base {
getPodcastEpisodes(params?: SearchTagsParams): Promise<PodcastEpisode[]>;
}
export {};