nakedobjects.spa
Version:
Single Page Application client for a Naked Objects application.
22 lines • 1.2 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { ItemViewModel } from './item-view-model';
var RecentItemViewModel = (function (_super) {
__extends(RecentItemViewModel, _super);
function RecentItemViewModel(context, colorService, error, urlManager, configService, link, paneId, clickHandler, viewModelFactory, index, isSelected, friendlyName) {
var _this = _super.call(this, context, colorService, error, urlManager, configService, link, paneId, clickHandler, viewModelFactory, index, isSelected, "") || this;
_this.friendlyName = friendlyName;
return _this;
}
return RecentItemViewModel;
}(ItemViewModel));
export { RecentItemViewModel };
//# sourceMappingURL=recent-item-view-model.js.map