ddnet
Version:
A typescript npm package for interacting with data from ddnet.org
61 lines (60 loc) • 1.22 kB
TypeScript
import { Type } from '../../util.js';
import { ServerStats } from './ServerStats.js';
/**
* Wrapper class for all player server types.
*/
export declare class Servers {
/**
* Novice server stats.
*/
[]: ServerStats;
/**
* Moderate server stats.
*/
[]: ServerStats;
/**
* Brutal server stats.
*/
[]: ServerStats;
/**
* Insane server stats.
*/
[]: ServerStats;
/**
* Dummy server stats.
*/
[]: ServerStats;
/**
* DDmaX.Easy server stats.
*/
[]: ServerStats;
/**
* DDmaX.Next server stats.
*/
[]: ServerStats;
/**
* DDmaX.Pro server stats.
*/
[]: ServerStats;
/**
* DDmaX.Nut server stats.
*/
[]: ServerStats;
/**
* Oldschool server stats.
*/
[]: ServerStats;
/**
* Solo server stats.
*/
[]: ServerStats;
/**
* Race server stats.
*/
[]: ServerStats;
/**
* Fun server stats.
*/
[]: ServerStats;
constructor(data: ServerStats[]);
}