Handles the checkout pull request command.
({pr, takeover, target}: Arguments<CheckoutPullRequestParams>)
| 33 | |
| 34 | /** Handles the checkout pull request command. */ |
| 35 | async function handler({pr, takeover, target}: Arguments<CheckoutPullRequestParams>) { |
| 36 | await checkoutPullRequest({pr, takeover, target}); |
| 37 | } |
| 38 | |
| 39 | /** yargs command module for checking out a PR */ |
| 40 | export const CheckoutCommandModule: CommandModule<{}, CheckoutPullRequestParams> = { |
nothing calls this directly
no test coverage detected