biketag
Version:
The Javascript client API for BikeTag Games
8 lines (6 loc) • 376 B
TypeScript
import { ImgurClient } from 'imgur';
import { getTagsPayload } from '../common/payloads';
import { BikeTagApiResponse } from '../common/types';
import { Tag } from '../common/schema';
import { default as TinyCache } from 'tinycache';
export declare function getTags(client: ImgurClient, payload: getTagsPayload, cache?: typeof TinyCache): Promise<BikeTagApiResponse<Tag[]>>;