nestjs-minio-backend
Version:
NestJS module for MinIO integration
11 lines (10 loc) • 459 B
TypeScript
import { NestInterceptor, ExecutionContext, CallHandler } from '@nestjs/common';
import { Observable } from 'rxjs';
import { MinioService } from '../minio.service';
export declare class FileUrlTransformInterceptor implements NestInterceptor {
private readonly minioService;
private readonly logger;
constructor(minioService: MinioService);
intercept(context: ExecutionContext, next: CallHandler): Observable<any>;
private transformUrls;
}