Files
evento/node_modules/@nestjs/common/pipes/file/file-validator.interface.js
2026-03-18 14:55:56 -03:00

16 lines
394 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileValidator = void 0;
/**
* Interface describing FileValidators, which can be added to a ParseFilePipe
*
* @see {ParseFilePipe}
* @publicApi
*/
class FileValidator {
constructor(validationOptions) {
this.validationOptions = validationOptions;
}
}
exports.FileValidator = FileValidator;