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