UNPKG

@shibaoxu/shibaoxu-toy

Version:
16 lines (15 loc) 436 B
"use strict"; 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;