(firstParameter: string | TemplateStringsArray | undefined, ...args: string[])
| 28 | function docComment(strings: TemplateStringsArray, ...args: string[]): DocComment |
| 29 | function docComment(startingText?: string): DocComment |
| 30 | function docComment(firstParameter: string | TemplateStringsArray | undefined, ...args: string[]): DocComment { |
| 31 | if (typeof firstParameter === 'string' || typeof firstParameter === 'undefined') { |
| 32 | return new DocComment(firstParameter) |
| 33 | } |
| 34 | return docCommentTag(firstParameter, args) |
| 35 | } |
| 36 | |
| 37 | function docCommentTag(strings: TemplateStringsArray, args: string[]) { |
| 38 | const docComment = new DocComment() |
no test coverage detected