@shibaoxu/shibaoxu-toy
Version:
learning build npm package
16 lines (15 loc) • 436 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Student = void 0;
var Student = /** @class */ (function () {
function Student(name, age, grade) {
this.name = name;
this.age = age;
this.grade = grade;
}
Student.prototype.echo = function () {
return this.name + "/" + this.age + "/" + this.grade;
};
return Student;
}());
exports.Student = Student;