UNPKG

@domisoft/todo-clean-architecture

Version:

todo project following uncle bob clean architecture patterns

12 lines 356 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var TodoStateVM = /** @class */ (function () { function TodoStateVM() { this.filter = 'all'; this.todos = []; this.activeTodosCount = 0; } return TodoStateVM; }()); exports.TodoStateVM = TodoStateVM; //# sourceMappingURL=todos.viewmodel.js.map