UNPKG

@kfijolek/boardgamegeekclient

Version:

TypeScript client to interact with BoardGameGeek public XML API

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[]; }