(providerId: ProviderId | string)
| 163 | } |
| 164 | |
| 165 | export function supportsFileAttachments(providerId: ProviderId | string): boolean { |
| 166 | const provider = getAttachmentProvider(providerId) |
| 167 | return Boolean(provider && !UNSUPPORTED_FILE_PROVIDERS.has(provider)) |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Real maximum attachment size for a provider — its native ceiling when it has a large-file |
no test coverage detected