async-xbox-live-api
Version:
Async library to enable you to interact with the xbox live api
8 lines (7 loc) • 766 B
TypeScript
import { Clip, GetAchievementsReponse, GetActivityResponse, GetClipsResponse, GetScreenshotsResponse } from './types';
export declare function getXuid(gamertag: string): Promise<string>;
export declare function getClipsForGamer(gamertag: string, continueToken?: string): Promise<GetClipsResponse>;
export declare function getDetailsForClip(gamertag: string, clipId: string): Promise<Clip | undefined>;
export declare function getScreenshotsForGamer(gamertag: string, continueToken?: string): Promise<GetScreenshotsResponse>;
export declare function getAchievementsForGamer(gamertag: string, continueToken?: string): Promise<GetAchievementsReponse>;
export declare function getActivityForGamer(gamertag: string, continueToken?: string): Promise<GetActivityResponse>;