UNPKG

@mrmory/bggclient

Version:

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

13 lines (12 loc) 1.12 kB
import { BggFamilyDto, BggThingDto, BggForumlistDto, BggForumDto, BggThreadDto, BggUserDto, BggGuildDto, BggPlayDto, BggCollectionDto } from "../../dto"; import { IThingRequest, IFamilyRequest, IForumlistRequest, IForumRequest, IThreadRequest, IUserRequest, IGuildRequest, IPlaysRequest, ICollectionRequest } from '../../request'; import { IBggClient } from "./IBggClient"; export declare type IBggThingClient = IBggClient<IThingRequest, BggThingDto>; export declare type IBggFamilyClient = IBggClient<IFamilyRequest, BggFamilyDto>; export declare type IBggForumlistClient = IBggClient<IForumlistRequest, BggForumlistDto>; export declare type IBggForumClient = IBggClient<IForumRequest, BggForumDto>; export declare type IBggThreadClient = IBggClient<IThreadRequest, BggThreadDto>; export declare type IBggUserClient = IBggClient<IUserRequest, BggUserDto>; export declare type IBggGuildClient = IBggClient<IGuildRequest, BggGuildDto>; export declare type IBggPlaysClient = IBggClient<IPlaysRequest, BggPlayDto>; export declare type IBggCollectionClient = IBggClient<ICollectionRequest, BggCollectionDto>;