File size: 447 Bytes
cfbbc1a
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import { DynamicModule } from '@nestjs/common';
import { MulterModuleAsyncOptions, MulterModuleOptions } from './interfaces/files-upload-module.interface';
/**
 * @publicApi
 */
export declare class MulterModule {
    static register(options?: MulterModuleOptions): DynamicModule;
    static registerAsync(options: MulterModuleAsyncOptions): DynamicModule;
    private static createAsyncProviders;
    private static createAsyncOptionsProvider;
}