Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/decorator-options/BodyOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ export interface BodyOptions {
/**
* Class-transformer options used to perform plainToClass operation.
*
* @see https://github.com/pleerock/class-transformer
* @see https://github.com/typestack/class-transformer
*/
transform?: ClassTransformOptions;

/**
* If true, class-validator will be used to validate param object.
* If validation options are given then class-validator will perform validation with given options.
*
* @see https://github.com/pleerock/class-validator
* @see https://github.com/typestack/class-validator
*/
validate?: boolean | ValidatorOptions;

Expand Down
Loading