steamapi
Version:
A nice Steam API wrapper.
21 lines (20 loc) • 673 B
TypeScript
import User from './User.js';
export default class UserBans extends User {
/** Is this user community banned */
communityBanned: boolean;
/** Is this user vac banned */
vacBanned: boolean;
/** Number of VAC bans the user has had */
vacBans: number;
/** Number of game bans the user has had */
gameBans: number;
/**
* Economy ban status of the user. 'none' means no economy ban.
* 'probation' means user is on probation.
* Not sure what other string values exist
*/
economyBan: string;
/** The number of days it has been since the user's last ban */
daysSinceLastBan: number;
constructor(data: any);
}