UNPKG

kartrider.js

Version:
14 lines (13 loc) 461 B
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; }); }