16 lines
394 B
JavaScript
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;
|