(children: ReadonlyArray<ChildType>)
| 28 | style: CssStyle; // Never used; needed for satisfying interface. |
| 29 | |
| 30 | constructor(children: ReadonlyArray<ChildType>) { |
| 31 | this.children = children; |
| 32 | this.classes = []; |
| 33 | this.height = 0; |
| 34 | this.depth = 0; |
| 35 | this.maxFontSize = 0; |
| 36 | this.style = {}; |
| 37 | } |
| 38 | |
| 39 | hasClass(className: string): boolean { |
| 40 | return this.classes.includes(className); |
nothing calls this directly
no outgoing calls
no test coverage detected