(config: StorageConfig)
| 70 | ) |
| 71 | |
| 72 | const buildS3CustomConfig = (config: StorageConfig) => |
| 73 | config.bucket && config.region ? { bucket: config.bucket, region: config.region } : undefined |
| 74 | |
| 75 | const buildBlobCustomConfig = (config: StorageConfig) => ({ |
| 76 | containerName: config.containerName!, |
no outgoing calls
no test coverage detected