UNPKG

@codelytv/primitives-type

Version:
16 lines 420 B
var Course = (function () { function Course(courseId) { this.courseId = courseId; } Course.prototype.toPrimitives = function () { return { courseId: this.courseId.value, }; }; Course.prototype.thisFunctionShouldNotBeIncludedInTheToPrimitives = function () { return true; }; return Course; }()); export { Course }; //# sourceMappingURL=Course.js.map