fastify-file-interceptor
Version:
This library for Nestjs using FastifyAdapter it rely on library fastify-multer and express multer
9 lines (8 loc) • 448 B
TypeScript
import { DynamicModule } from "@nestjs/common";
import { MulterModuleOptions, FastifyMulterModuleAsyncOptions } from "../interface/fastify-multer-module-interface";
export declare class FastifyMulterModule {
static register(options?: MulterModuleOptions): DynamicModule;
static registerAsync(options: FastifyMulterModuleAsyncOptions): DynamicModule;
private static createAsyncProviders;
private static createAsyncOptionsProvider;
}