Interface FileUploadConfig

interface FileUploadConfig {
    allowedExtensions?: string[];
    allowedMimeTypes?: string[];
    enabled?: boolean;
    maxFileSize?: number;
    scanForMalware?: boolean;
    stripMetadata?: boolean;
    uploadDir?: string;
}

Properties

allowedExtensions?: string[]
allowedMimeTypes?: string[]
enabled?: boolean
maxFileSize?: number
scanForMalware?: boolean
stripMetadata?: boolean
uploadDir?: string