UNPKG

@mrmory/bggclient

Version:

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

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