(platform: string)
| 321 | } |
| 322 | |
| 323 | export async function isValidCommunityPlatform(platform: string): Promise<boolean> { |
| 324 | return (await getKnownCommunityPlatforms()).includes(platform); |
| 325 | } |
| 326 | |
| 327 | export async function getKnownEnterprisePlatforms(): Promise<string[]> { |
| 328 | return ['windows']; |
no test coverage detected