Mercurial > hg > ng2-query-ismi
annotate 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 |
| rev | line source |
|---|---|
| 58 | 1 "use strict"; |
| 2 var ResultColumn = (function () { | |
| 3 function ResultColumn(name, title, sort, show) { | |
| 4 if (sort === void 0) { sort = ''; } | |
| 5 if (show === void 0) { show = false; } | |
| 6 this.name = name; | |
| 7 this.title = title; | |
| 8 this.sort = sort; | |
| 9 this.show = show; | |
| 10 } | |
| 11 return ResultColumn; | |
| 12 }()); | |
| 13 exports.ResultColumn = ResultColumn; | |
| 14 //# sourceMappingURL=result-column.js.map |
