| 37 | }); |
| 38 | |
| 39 | interface TreeEntry { |
| 40 | object?: { |
| 41 | entries: TreeEntry[]; |
| 42 | }; |
| 43 | type: 'blob' | 'tree'; |
| 44 | name: string; |
| 45 | sha: string; |
| 46 | blob?: { |
| 47 | size: number; |
| 48 | }; |
| 49 | } |
| 50 | |
| 51 | interface TreeFile { |
| 52 | path: string; |
nothing calls this directly
no outgoing calls
no test coverage detected