UNPKG

@retroachievements/api

Version:

A well-tested library that lets you get achievement, user, and game data from RetroAchievements.

8 lines (7 loc) 282 B
import type { AuthObject } from "../utils/public"; import type { SetClaim } from "./models"; type ClaimKind = "completed" | "dropped" | "expired"; export declare const getClaims: (authorization: AuthObject, payload: { claimKind: ClaimKind; }) => Promise<SetClaim[]>; export {};