UNPKG

@kfijolek/boardgamegeekclient

Version:

TypeScript client to interact with BoardGameGeek public XML API

13 lines (12 loc) 344 B
import { IBggDto } from "../interface"; import { BggGuildMemberDto } from "./BggGuildMemeberDto"; export declare class BggGuildDto implements IBggDto { id: number; name: string; created: string; category: string; website: string; manager: string; description: string; members: BggGuildMemberDto[]; }