( text: string, multiline: boolean = false, trailingNewline: boolean = true, )
| 1910 | } |
| 1911 | |
| 1912 | export function leadingComment( |
| 1913 | text: string, |
| 1914 | multiline: boolean = false, |
| 1915 | trailingNewline: boolean = true, |
| 1916 | ): LeadingComment { |
| 1917 | return new LeadingComment(text, multiline, trailingNewline); |
| 1918 | } |
| 1919 | |
| 1920 | export function jsDocComment(tags: JSDocTag[] = []): JSDocComment { |
| 1921 | return new JSDocComment(tags); |
no outgoing calls
no test coverage detected