UNPKG

@mrmory/bggclient

Version:

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

11 lines (10 loc) 274 B
import { IBggDto } from "../interface"; import { BggPlaysPlayDto } from "./subdto"; export declare class BggPlayDto implements IBggDto { id: number; userid: number; total: number; page: number; username: string; plays: BggPlaysPlayDto[]; }