UNPKG

dev-to-js

Version:

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

7 lines (6 loc) 229 B
import { Base } from '../base'; import { Comment } from './types'; export declare class Comments extends Base { getComment(commentId: string): Promise<Comment>; getComments(articleId: string): Promise<Comment[]>; }