(message: string)
| 799 | } |
| 800 | |
| 801 | function exitWithMessage(message: string): never { |
| 802 | console.error(message) |
| 803 | // eslint-disable-next-line custom-rules/no-process-exit |
| 804 | process.exit(1) |
| 805 | } |
| 806 | |
| 807 | /** |
| 808 | * Execute PermissionRequest hooks and return a decision if one is made. |
no test coverage detected