UNPKG

@mrmory/bggclient

Version:

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

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