UNPKG

@kfijolek/boardgamegeekclient

Version:

TypeScript client to interact with BoardGameGeek public XML API

9 lines (8 loc) 326 B
import { JsonParser } from "jackson-js"; import { BggGuildDto } from "../../concrete"; import { IDtoParser } from "../interface"; export declare class BggGuildDtoParser implements IDtoParser<BggGuildDto> { parser: JsonParser<BggGuildDto>; constructor(); jsonToDto(jsonData: any): Promise<BggGuildDto[]>; }