| 73 | export const MOCK_PULL_REQUEST = -1; |
| 74 | |
| 75 | export interface Config { |
| 76 | apiRoot?: string; |
| 77 | token?: string; |
| 78 | tokenKeyword?: string; |
| 79 | branch?: string; |
| 80 | useOpenAuthoring?: boolean; |
| 81 | repo?: string; |
| 82 | originRepo?: string; |
| 83 | squashMerges: boolean; |
| 84 | initialWorkflowStatus: string; |
| 85 | cmsLabelPrefix: string; |
| 86 | baseUrl?: string; |
| 87 | getUser: ({ token }: { token: string }) => Promise<GitHubUser>; |
| 88 | } |
| 89 | |
| 90 | interface TreeFile { |
| 91 | type: 'blob' | 'tree'; |
nothing calls this directly
no outgoing calls
no test coverage detected