Total Complexity | 2 |
Complexity/F | 1 |
Lines of Code | 8 |
Function Count | 2 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | export class HtmlColumn { |
||
2 | constructor(public readonly text: string, public readonly html: string) {} |
||
3 | |||
4 | public toString() { |
||
5 | return this.text; |
||
6 | } |
||
7 | } |
||
8 |