fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
15 lines (14 loc) • 351 B
TypeScript
/**
* Represents an error thrown because a user set their stats to private
*/
declare class StatsPrivacyError extends Error {
/**
* The user who set their stats to private
*/
user: string;
/**
* @param user The user who set their stats to private
*/
constructor(user: string);
}
export default StatsPrivacyError;