MCPcopy Create free account
hub / github.com/angular/dev-infra / File

Interface File

github-actions/org-file-sync/lib/main.ts:20–23  ·  view source on GitHub ↗

* A file to be synced, a custom interface is used due to Octokit's types not properly expressing * the content value.

Source from the content-addressed store, hash-verified

18 * the content value.
19 */
20interface File {
21 sha: string;
22 content: string;
23}
24
25/** A map of the files obtained for a repository */
26type Files = Map<string, File | null>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected