UNPKG

caccl-api

Version:

A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.

21 lines 651 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * An endpoint category * @author Gabe Abrams */ var EndpointCategory = /** @class */ (function () { /** * Initialize the endpoint category * @author Gabe Abrams * @param initPack package of info for initializing the endpoint category */ function EndpointCategory(initPack) { this.visitEndpoint = initPack.visitEndpoint; this.api = initPack.api; this.defaultCourseId = initPack.defaultCourseId; } return EndpointCategory; }()); exports.default = EndpointCategory; //# sourceMappingURL=EndpointCategory.js.map