view src/app/result-column.js @ 58:3b4046e0cc02 default

Merge from ng2-table branch. d7c947909ab888c013171b8c037e4f9fab30fe57
author casties
date Wed, 29 Mar 2017 17:19:12 +0200
parents
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