(names: string | string[])
| 8 | : `https://developer.smartthings.com/docs/api/public/#operation/${nameOrURL}` |
| 9 | |
| 10 | export const apiDocsURL = (names: string | string[]): string => 'For API information, see:\n ' + |
| 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 ') |
no test coverage detected