UNPKG

@happy-coders/fun-cli

Version:

Be your project management more fun!

14 lines (13 loc) 318 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Task = void 0; var Task = /** @class */ (function () { function Task(name) { this.name = name; } Task.prototype.getName = function () { return this.name; }; return Task; }()); exports.Task = Task;