kartrider.js
Version:
KartRider Nexon API Node.js library
14 lines (13 loc) • 461 B
TypeScript
import { MatchInfo } from './MatchInfo';
import type { Client } from './Client';
import type { PlayerBasicInfo, rawUserMatchList } from './types';
export declare class MatchList {
user: PlayerBasicInfo;
matchList: MatchInfo[];
limit: number | undefined | null;
offset: number | undefined | null;
constructor(client: Client, userInfo: PlayerBasicInfo, data: rawUserMatchList, page?: {
limit: number;
offset: number;
});
}