augmenttoolkit / node_modules /@nestjs /common /pipes /file /file-validator.interface.js
Leon4gr45's picture
Include updated package-lock.json (part 10)
cfbbc1a verified
Raw
History Blame Contribute Delete
394 Bytes
"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;