UNPKG

@proventuslabs/nestjs-multipart-form

Version:

A lightweight and efficient NestJS package for handling multipart form data and file uploads with RxJS streaming support and type safety.

13 lines (12 loc) 613 B
import type { MultipartOptions } from "../core/types"; /** * Configurable module builder for the MultipartModule. * Provides tokens and types for dependency injection and module configuration. */ export declare const ConfigurableModuleClass: import("@nestjs/common").ConfigurableModuleCls<MultipartOptions, "register", "create", { isGlobal: boolean; }>, MODULE_OPTIONS_TOKEN: string | symbol, ASYNC_OPTIONS_TYPE: import("@nestjs/common").ConfigurableModuleAsyncOptions<MultipartOptions, "create"> & Partial<{ isGlobal: boolean; }>, OPTIONS_TYPE: MultipartOptions & Partial<{ isGlobal: boolean; }>;