fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
15 lines • 358 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Represents the base class of many other classes
*/
class Base {
/**
* @param client The main client
*/
constructor(client) {
Object.defineProperty(this, 'client', { value: client });
}
}
exports.default = Base;
//# sourceMappingURL=Base.js.map