recoder-code
Version:
🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!
16 lines (15 loc) • 394 B
JavaScript
;
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;