Update plugins/catalog-backend-module-github/src/providers/GithubEntityProvider.test.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2026-03-20 11:39:03 +01:00
committed by GitHub
parent edf465f2a6
commit 42bef699fa
@@ -36,7 +36,7 @@ import {
RepositoryRenamedEvent,
} from '@octokit/webhooks-types';
type PartialDeep<T> = T extends (...args: any[]) => any
type PartialDeep<T> = T extends (...args: unknown[]) => unknown
? T
: T extends Array<infer U>
? Array<PartialDeep<U>>