(mimeType: string)
| 42 | } |
| 43 | |
| 44 | function isSupportedTextFile(mimeType: string): boolean { |
| 45 | return SUPPORTED_TEXT_MIME_TYPES.some((t) => mimeType.startsWith(t)) |
| 46 | } |
| 47 | |
| 48 | async function exportGoogleWorkspaceFile( |
| 49 | accessToken: string, |
no outgoing calls
no test coverage detected