UNPKG

typerinth

Version:

A TypeScript library for interacting with the Modrinth API.

12 lines (11 loc) 498 B
import { URL } from 'url'; import { Route } from '../Route'; import CacheManager from '../../util/CacheManager'; import { TeamMember } from '../../interfaces/teams'; export default class GetMultipleTeamsMembers extends Route<TeamMember[][]> { private teamIds; constructor(baseUrl: URL, ua: string | undefined, cacheManager: CacheManager, authorization: string | undefined, teamIds: string[]); getCacheKey(): string | null; getUrl(): URL; parseData(data: any): TeamMember[][]; }