(keys: string[])
| 175 | return `[${joinKeys(keys)}]`; |
| 176 | } |
| 177 | #headerGroup(keys: string[]): string { |
| 178 | return `[[${joinKeys(keys)}]]`; |
| 179 | } |
| 180 | #declaration(keys: string[]): string { |
| 181 | const title = joinKeys(keys); |
| 182 | if (title.length > this.maxPad) { |
no test coverage detected