guilded.ts
Version:
A powerful NPM module that allows you to easily interact with the Guilded API.
21 lines • 474 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Base = void 0;
/**
* Represents a data model on Guilded.
* @example new Base(client, id);
*/
class Base {
client;
id;
/**
* @param client The client the data model belongs to.
* @param id The ID of the structure.
*/
constructor(client, id) {
this.client = client;
this.id = id;
}
}
exports.Base = Base;
//# sourceMappingURL=Base.js.map