UNPKG

351 BTypeScriptView Raw
1import { NestInterceptor, Type } from '@nestjs/common';
2import { MulterOptions } from '../interfaces/multer-options.interface';
3/**
4 *
5 * @param fieldName
6 * @param maxCount
7 * @param localOptions
8 *
9 * @publicApi
10 */
11export declare function FilesInterceptor(fieldName: string, maxCount?: number, localOptions?: MulterOptions): Type<NestInterceptor>;