Fix type of parentsByHash field

This commit is contained in:
Joscha 2023-10-23 19:44:38 +02:00
parent 848c4ad019
commit e1261aea96
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ export type CommitsResponse = {
authorByHash: string[];
committerDateByHash: number[];
messageByHash: string[];
parentsByHash: string[][];
parentsByHash: number[][];
};
/**