UNPKG

@kfijolek/boardgamegeekclient

Version:

TypeScript client to interact with BoardGameGeek public XML API

12 lines (11 loc) 328 B
import { IBggDto } from "../interface"; import { BggForumThreadDto } from "./BggForumThreadDto"; export declare class BggForumDto implements IBggDto { id: number; lastpostdate: string; noposting: number; numthreads: number; numposts: number; title: string; threads: BggForumThreadDto[]; }