/** * All platforms available for the Platform Picker */ export type Platform = 'mac' | 'windows' | 'linux' /** * Array of all supported platforms in the Platform Picker */ export const allPlatforms: Platform[] = ['mac', 'windows', 'linux']