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