| 49 | const MAX_RETURNED_ISSUES = 20; |
| 50 | |
| 51 | export class GithubQueriesModule extends BaseModule<GithubQueryResults | void> { |
| 52 | override async retrieveData() { |
| 53 | // Non-null assertion is used here as the check for undefined immediately follows to confirm the |
| 54 | // assertion. Typescript's type filtering does not seem to work as needed to understand |
nothing calls this directly
no outgoing calls
no test coverage detected