(value: any[])
| 493 | } |
| 494 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 495 | function isLocalCommitArray(value: any[]): value is LocalCommit[] { |
| 496 | return isLocalCommit(value[0]) |
| 497 | } |
| 498 | |
| 499 | interface PackageObj { |
| 500 | version: string |
no test coverage detected