(platform: string)
| 329 | } |
| 330 | |
| 331 | export async function isValidEnterprisePlatform(platform: string): Promise<boolean> { |
| 332 | return (await getKnownEnterprisePlatforms()).includes(platform); |
| 333 | } |
| 334 | |
| 335 | export async function promptForPlatform( |
| 336 | platforms: string[], |
no test coverage detected