UNPKG

dev-to-js

Version:

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

16 lines (15 loc) 571 B
import { Articles } from './articles'; import { Comments } from './comments'; import { Users } from './users'; import { Followers } from './followers'; import { Listings } from './listings'; import { PodcastEpisodes } from './podcast-episodes'; import { Tags } from './tags'; import { Videos } from './videos'; import { Webhooks } from './webhooks'; import { Base } from './base'; declare class DevTo extends Base { } interface DevTo extends Articles, Comments, Users, Followers, Listings, PodcastEpisodes, Tags, Videos, Webhooks { } export default DevTo;