You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
398 lines
8.6 KiB
398 lines
8.6 KiB
|
2 years ago
|
export = TMEvent;
|
||
|
|
/**
|
||
|
|
* Represents a Event in Trackmania.
|
||
|
|
*/
|
||
|
|
declare class TMEvent {
|
||
|
|
constructor(client: any, data: any);
|
||
|
|
/** The client instance
|
||
|
|
* @type {Client}
|
||
|
|
*/
|
||
|
|
client: Client;
|
||
|
|
/**
|
||
|
|
* The event's data.
|
||
|
|
* @type {Object}
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private _data;
|
||
|
|
/**
|
||
|
|
* The event's ID.
|
||
|
|
* @type {number}
|
||
|
|
*/
|
||
|
|
get id(): number;
|
||
|
|
/**
|
||
|
|
* The number of players in the event.
|
||
|
|
* @type {number}
|
||
|
|
*/
|
||
|
|
get size(): number;
|
||
|
|
/**
|
||
|
|
* The event's Live ID.
|
||
|
|
* @type {string}
|
||
|
|
*/
|
||
|
|
get liveId(): string;
|
||
|
|
/**
|
||
|
|
* The creator of the event.
|
||
|
|
* @returns {Promise<Player>}
|
||
|
|
*/
|
||
|
|
creator(): Promise<Player>;
|
||
|
|
/**
|
||
|
|
* The event's name.
|
||
|
|
* @type {string}
|
||
|
|
*/
|
||
|
|
get name(): string;
|
||
|
|
/**
|
||
|
|
* The event's description.
|
||
|
|
* @type {string}
|
||
|
|
*/
|
||
|
|
get description(): string;
|
||
|
|
/**
|
||
|
|
* The event's registration start date.
|
||
|
|
* @type {Date}
|
||
|
|
*/
|
||
|
|
get registrationStart(): Date;
|
||
|
|
/**
|
||
|
|
* The event's registration end date.
|
||
|
|
* @type {Date}
|
||
|
|
*/
|
||
|
|
get registrationEnd(): Date;
|
||
|
|
/**
|
||
|
|
* The event's start date.
|
||
|
|
* @type {Date}
|
||
|
|
*/
|
||
|
|
get start(): Date;
|
||
|
|
/**
|
||
|
|
* The event's end date.
|
||
|
|
* @type {Date}
|
||
|
|
*/
|
||
|
|
get end(): Date;
|
||
|
|
/**
|
||
|
|
* The event's leaderboard id.
|
||
|
|
* @type {number}
|
||
|
|
*/
|
||
|
|
get leaderboardId(): number;
|
||
|
|
/**
|
||
|
|
* The event's manialink (if any).
|
||
|
|
* @type {?string}
|
||
|
|
*/
|
||
|
|
get manialink(): string;
|
||
|
|
/**
|
||
|
|
* The event's rules URL (if any).
|
||
|
|
* @type {?string}
|
||
|
|
*/
|
||
|
|
get rulesUrl(): string;
|
||
|
|
/**
|
||
|
|
* The event's stream URL (if any).
|
||
|
|
* @type {?string}
|
||
|
|
*/
|
||
|
|
get stream(): string;
|
||
|
|
/**
|
||
|
|
* The event's website (if any).
|
||
|
|
* @type {?string}
|
||
|
|
*/
|
||
|
|
get website(): string;
|
||
|
|
/**
|
||
|
|
* The event's logo URL.
|
||
|
|
* @type {string}
|
||
|
|
*/
|
||
|
|
get logo(): string;
|
||
|
|
/**
|
||
|
|
* The event's vertical banner URL.
|
||
|
|
* @type {string}
|
||
|
|
*/
|
||
|
|
get vertical(): string;
|
||
|
|
/**
|
||
|
|
* The event's rounds.
|
||
|
|
* @type {Array<TMEventRound>}
|
||
|
|
*/
|
||
|
|
get rounds(): TMEventRound[];
|
||
|
|
}
|
||
|
|
import Client = require("../client/Client");
|
||
|
|
import Player = require("./Player");
|
||
|
|
/**
|
||
|
|
* Represents a round in a TMEvent.
|
||
|
|
*/
|
||
|
|
declare class TMEventRound {
|
||
|
|
constructor(event: any, data: any);
|
||
|
|
/**
|
||
|
|
* The event instance
|
||
|
|
* @type {TMEvent}
|
||
|
|
*/
|
||
|
|
event: TMEvent;
|
||
|
|
/**
|
||
|
|
* The client instance
|
||
|
|
* @type {Client}
|
||
|
|
*/
|
||
|
|
client: Client;
|
||
|
|
/**
|
||
|
|
* The round's data.
|
||
|
|
* @type {Object}
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private _data;
|
||
|
|
/**
|
||
|
|
* The challenge's CacheManager instance
|
||
|
|
* @type {CacheManager}
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private _challengesCache;
|
||
|
|
/**
|
||
|
|
* The round's ID.
|
||
|
|
* @type {number}
|
||
|
|
*/
|
||
|
|
get id(): number;
|
||
|
|
/**
|
||
|
|
* The round's name.
|
||
|
|
* @type {string}
|
||
|
|
*/
|
||
|
|
get name(): string;
|
||
|
|
/**
|
||
|
|
* The round's status.
|
||
|
|
* @type {string}
|
||
|
|
*/
|
||
|
|
get status(): string;
|
||
|
|
/**
|
||
|
|
* The round's matches.
|
||
|
|
* @type {Array<TMEventRoundMatch>}
|
||
|
|
*/
|
||
|
|
get matches(): TMEventRoundMatch[];
|
||
|
|
/**
|
||
|
|
* The round's challenges.
|
||
|
|
* @param {boolean} [cache=this.client.options.cache.enabled] Wether to get the challenges from the cache or not.
|
||
|
|
* @returns {Promise<Array<TMEventChallenge>>}
|
||
|
|
*/
|
||
|
|
challenges(cache?: boolean): Promise<Array<TMEventChallenge>>;
|
||
|
|
/**
|
||
|
|
* Fetches the round's challenges.
|
||
|
|
* @param {number} index The index of the challenge to fetch.
|
||
|
|
* @param {boolean} [cache=this.client.options.cache.enabled] Wether to cache the challenges or not.
|
||
|
|
* @returns {Promise<Array<TMEventChallenge>>}
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private _fetchChallenge;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Represents a match in a TMEventRound.
|
||
|
|
*/
|
||
|
|
declare class TMEventRoundMatch {
|
||
|
|
constructor(round: any, data: any);
|
||
|
|
/**
|
||
|
|
* The round instance
|
||
|
|
* @type {TMEventRound}
|
||
|
|
*/
|
||
|
|
round: TMEventRound;
|
||
|
|
/**
|
||
|
|
* The event instance
|
||
|
|
* @type {TMEvent}
|
||
|
|
*/
|
||
|
|
event: TMEvent;
|
||
|
|
/**
|
||
|
|
* The client instance
|
||
|
|
* @type {Client}
|
||
|
|
*/
|
||
|
|
client: Client;
|
||
|
|
/**
|
||
|
|
* The match's data.
|
||
|
|
* @type {Object}
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private _data;
|
||
|
|
/**
|
||
|
|
* The match's results CacheManager instance
|
||
|
|
* @type {CacheManager}
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private _resultsCache;
|
||
|
|
/**
|
||
|
|
* The match's ID.
|
||
|
|
* @type {number}
|
||
|
|
*/
|
||
|
|
get id(): number;
|
||
|
|
/**
|
||
|
|
* The match's name.
|
||
|
|
* @type {string}
|
||
|
|
*/
|
||
|
|
get name(): string;
|
||
|
|
/**
|
||
|
|
* Whether the match is completed.
|
||
|
|
* @type {boolean}
|
||
|
|
*/
|
||
|
|
get isCompleted(): boolean;
|
||
|
|
/**
|
||
|
|
* The match's results.
|
||
|
|
* @param {number} [page=0] The page number.
|
||
|
|
* @param {boolean} [cache=this.client.options.cache.enabled] Whether to cache the results.
|
||
|
|
* @returns {Promise<Array<TMEventRoundMatchResult>>}
|
||
|
|
*/
|
||
|
|
getResults(page?: number, cache?: boolean): Promise<Array<TMEventRoundMatchResult>>;
|
||
|
|
/**
|
||
|
|
* Fetches the match's results.
|
||
|
|
* @param {number} [page=0] The page number.
|
||
|
|
* @param {boolean} [cache=this.client.options.cache.enabled] Whether to cache the results.
|
||
|
|
* @returns {Promise<Array<TMEventRoundMatchResult>>}
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private _fetchResults;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Represents a challenge in a TMEventRound.
|
||
|
|
*/
|
||
|
|
declare class TMEventChallenge {
|
||
|
|
constructor(round: any, data: any);
|
||
|
|
/**
|
||
|
|
* The round instance
|
||
|
|
* @type {TMEventRound}
|
||
|
|
*/
|
||
|
|
round: TMEventRound;
|
||
|
|
/**
|
||
|
|
* The event instance
|
||
|
|
* @type {TMEvent}
|
||
|
|
*/
|
||
|
|
event: TMEvent;
|
||
|
|
/**
|
||
|
|
* The client instance
|
||
|
|
* @type {Client}
|
||
|
|
*/
|
||
|
|
client: Client;
|
||
|
|
/**
|
||
|
|
* The challenge's data.
|
||
|
|
* @type {Object}
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private _data;
|
||
|
|
/**
|
||
|
|
* The challenge's results CacheManager instance
|
||
|
|
* @type {CacheManager}
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private _resultsCache;
|
||
|
|
/**
|
||
|
|
* The challenge's ID.
|
||
|
|
* @type {number}
|
||
|
|
*/
|
||
|
|
get id(): number;
|
||
|
|
/**
|
||
|
|
* The challenge's name.
|
||
|
|
* @type {string}
|
||
|
|
*/
|
||
|
|
get name(): string;
|
||
|
|
/**
|
||
|
|
* The challenge's status.
|
||
|
|
* @type {string}
|
||
|
|
*/
|
||
|
|
get status(): string;
|
||
|
|
/**
|
||
|
|
* The challenge's rooms number.
|
||
|
|
* @type {number}
|
||
|
|
*/
|
||
|
|
get rooms(): number;
|
||
|
|
/**
|
||
|
|
* The challenge's maps.
|
||
|
|
* @returns {Promise<Array<TMMap>>}
|
||
|
|
*/
|
||
|
|
getMaps(): Promise<Array<TMMap>>;
|
||
|
|
/**
|
||
|
|
* The challenge's admins.
|
||
|
|
* @returns {Promise<Array<Player>>}
|
||
|
|
*/
|
||
|
|
getAdmins(): Promise<Array<Player>>;
|
||
|
|
/**
|
||
|
|
* The challenge's results.
|
||
|
|
* @param {number} [page=0] The page number.
|
||
|
|
* @param {boolean} [cache=this.client.options.cache.enabled] Whether to get the results from cache.
|
||
|
|
* @returns {Promise<Array<TMEventChallengeResult>>}
|
||
|
|
*/
|
||
|
|
getResults(page?: number, cache?: boolean): Promise<Array<TMEventChallengeResult>>;
|
||
|
|
/**
|
||
|
|
* Fetches the match's results.
|
||
|
|
* @param {number} [page=0] The page number.
|
||
|
|
* @param {boolean} [cache=this.client.options.cache.enabled] Whether to cache the results.
|
||
|
|
* @returns {Promise<Array<TMEventChallengeResult>>}
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private _fetchResults;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Represents a result in a TMEventRoundMatch.
|
||
|
|
*/
|
||
|
|
declare class TMEventRoundMatchResult {
|
||
|
|
constructor(match: any, data: any);
|
||
|
|
/**
|
||
|
|
* The match instance
|
||
|
|
* @type {TMEventRoundMatch}
|
||
|
|
*/
|
||
|
|
match: TMEventRoundMatch;
|
||
|
|
/**
|
||
|
|
* The event instance
|
||
|
|
* @type {TMEvent}
|
||
|
|
*/
|
||
|
|
event: TMEvent;
|
||
|
|
/**
|
||
|
|
* The client instance
|
||
|
|
* @type {Client}
|
||
|
|
*/
|
||
|
|
client: Client;
|
||
|
|
/**
|
||
|
|
* The result's data.
|
||
|
|
* @type {Object}
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private _data;
|
||
|
|
/**
|
||
|
|
* The player that got the result.
|
||
|
|
* @returns {Promise<Player>}
|
||
|
|
*/
|
||
|
|
player(): Promise<Player>;
|
||
|
|
/**
|
||
|
|
* The position of the player.
|
||
|
|
* @type {number}
|
||
|
|
*/
|
||
|
|
get position(): number;
|
||
|
|
/**
|
||
|
|
* The score of the player.
|
||
|
|
* @type {number}
|
||
|
|
*/
|
||
|
|
get score(): number;
|
||
|
|
}
|
||
|
|
import TMMap = require("./TMMap");
|
||
|
|
/**
|
||
|
|
* Represents a result in a TMEventChallenge.
|
||
|
|
*/
|
||
|
|
declare class TMEventChallengeResult {
|
||
|
|
constructor(challenge: any, data: any);
|
||
|
|
/**
|
||
|
|
* The challenge instance
|
||
|
|
* @type {TMEventChallenge}
|
||
|
|
*/
|
||
|
|
challenge: TMEventChallenge;
|
||
|
|
/**
|
||
|
|
* The event instance
|
||
|
|
* @type {TMEvent}
|
||
|
|
*/
|
||
|
|
event: TMEvent;
|
||
|
|
/**
|
||
|
|
* The client instance
|
||
|
|
* @type {Client}
|
||
|
|
*/
|
||
|
|
client: Client;
|
||
|
|
/**
|
||
|
|
* The result's data.
|
||
|
|
* @type {Object}
|
||
|
|
* @private
|
||
|
|
*/
|
||
|
|
private _data;
|
||
|
|
/**
|
||
|
|
* The player.
|
||
|
|
* @returns {Promise<Player>}
|
||
|
|
*/
|
||
|
|
player(): Promise<Player>;
|
||
|
|
/**
|
||
|
|
* The position of the player.
|
||
|
|
* @type {number}
|
||
|
|
*/
|
||
|
|
get position(): number;
|
||
|
|
/**
|
||
|
|
* The score of the player.
|
||
|
|
* @type {number}
|
||
|
|
*/
|
||
|
|
get score(): number;
|
||
|
|
}
|