UNPKG

@nestjs/common

Version:

Nest - modern, fast, powerful node.js web framework (@common)

13 lines (12 loc) 276 B
/** * Interface describing FileValidators, which can be added to a ParseFilePipe * * @see {ParseFilePipe} * @publicApi */ export class FileValidator { validationOptions; constructor(validationOptions) { this.validationOptions = validationOptions; } }