Mercurial > hg > ng2-query-ismi
annotate src/app/result-column.js @ 62:7787ca310644 webpack tip
update @angular to 4.4.5.
author | Robert Casties <casties@mpiwg-berlin.mpg.de> |
---|---|
date | Wed, 18 Oct 2017 17:46:41 +0200 |
parents | 3b4046e0cc02 |
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 |