express-image-validator
Version:
Validator of various image parameters in Express.js applications
4 lines (3 loc) • 312 B
TypeScript
import type { ValidationError } from '../../core/validators';
export declare const tooLightError: (field: string, minSize: number, fileName: string, fileSize: number) => ValidationError;
export declare const tooLargeError: (field: string, maxSize: number, fileName: string, fileSize: number) => ValidationError;