(...namesOrURLs: string[])
| 11 | (typeof names === 'string' ? [names] : names).map(name => toURL(name)).join('\n ') |
| 12 | |
| 13 | export const itemInputHelpText = (...namesOrURLs: string[]): string => |
| 14 | 'More information can be found at:\n ' + namesOrURLs.map(nameOrURL => toURL(nameOrURL)).join('\n ') |
| 15 | |
| 16 | export type BuildEpilogOptions = { |
| 17 | command: string |
no test coverage detected