UNPKG

@kfijolek/boardgamegeekclient

Version:

Javascript client to interact with BoardGameGeek public XML API

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