* A file to be synced, a custom interface is used due to Octokit's types not properly expressing * the content value.
| 18 | * the content value. |
| 19 | */ |
| 20 | interface File { |
| 21 | sha: string; |
| 22 | content: string; |
| 23 | } |
| 24 | |
| 25 | /** A map of the files obtained for a repository */ |
| 26 | type Files = Map<string, File | null>; |
nothing calls this directly
no outgoing calls
no test coverage detected