UNPKG

typerinth

Version:

A TypeScript library for interacting with the Modrinth API.

11 lines (10 loc) 433 B
import { URL } from 'url'; import { Route } from '../Route'; import CacheManager from '../../util/CacheManager'; export default class GetPayoutHistoryRoute extends Route<any> { private userId; constructor(baseUrl: URL, ua: string | undefined, cacheManager: CacheManager, authorization: string | undefined, userId: string); getCacheKey(): string | null; getUrl(): URL; parseData(data: any, status: number): any; }