UNPKG

dev-to-js

Version:

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

9 lines (8 loc) 188 B
import { User } from '../users/types'; export declare type Comment = { type_of: string; id_code: string; body_html: string; user: User; children: Comment[]; };