teams.js 503 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.Teams = void 0;
  4. const base_collection_1 = require("./base_collection");
  5. const team_1 = require("../models/team");
  6. class Teams extends base_collection_1.BaseCollection {
  7. static rootElementName = "teams";
  8. static prefixURI = "teams";
  9. static elementClass = team_1.Team;
  10. list(request_params = {}) {
  11. return this.doList(request_params);
  12. }
  13. }
  14. exports.Teams = Teams;
  15. //# sourceMappingURL=teams.js.map