File size: 394 Bytes
cfbbc1a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"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;