( platform: Platform | PlatformSelector | undefined, )
| 54 | }; |
| 55 | |
| 56 | export function isApplePlatform( |
| 57 | platform: Platform | PlatformSelector | undefined, |
| 58 | ): platform is ApplePlatform | 'apple' { |
| 59 | return platform === 'apple' || platform === 'ios' || platform === 'macos'; |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * The macOS Apple-OS leaf: the AppKit desktop host. The post-collapse replacement for |
no outgoing calls