view src/app/result-column.js @ 59:0d51fefdbae6 webpack

Starting 'webpack' branch
author casties
date Wed, 29 Mar 2017 19:01:29 +0200
parents 3b4046e0cc02
children
line wrap: on
line source

"use strict";
var ResultColumn = (function () {
    function ResultColumn(name, title, sort, show) {
        if (sort === void 0) { sort = ''; }
        if (show === void 0) { show = false; }
        this.name = name;
        this.title = title;
        this.sort = sort;
        this.show = show;
    }
    return ResultColumn;
}());
exports.ResultColumn = ResultColumn;
//# sourceMappingURL=result-column.js.map