( bundleIds: readonly string[], )
| 650 | * at the call site; the caller `.catch()`es. |
| 651 | */ |
| 652 | export async function unhideComputerUseApps( |
| 653 | bundleIds: readonly string[], |
| 654 | ): Promise<void> { |
| 655 | if (bundleIds.length === 0) return |
| 656 | const cu = requireComputerUseSwift() |
| 657 | await cu.apps.unhide([...bundleIds]) |
| 658 | } |
| 659 |
no test coverage detected