(platform: string)
| 313 | } |
| 314 | |
| 315 | export async function isValidPlatform(platform: string): Promise<boolean> { |
| 316 | return (await getKnownPlatforms()).includes(platform); |
| 317 | } |
| 318 | |
| 319 | export async function getKnownCommunityPlatforms(): Promise<string[]> { |
| 320 | return ['electron']; |
no test coverage detected