UNPKG

@mrmory/bggclient

Version:

Javascript client to interact with BoardGameGeek public XML API based on boardgamegeekjsclient

10 lines (9 loc) 272 B
import { IBggDto } from "../interface"; import { BggArticleDto } from "./BggThreadArticleDto"; export declare class BggThreadDto implements IBggDto { id: number; link: string; numarticles: number; subject: string; articles: BggArticleDto[]; }