@eddaic/nestjs-decorators
Version:
Additional decorators intended for use with NestJS framework.
15 lines (14 loc) • 468 B
TypeScript
import { TransformOptions } from 'class-transformer';
import { RoundingPolicy } from '../enum';
export interface TransformIntOptions extends TransformOptions {
/**
* Iterate over each option if value is an array.
*/
each?: boolean;
/**
* Rounding policy applied to encountered decimal numbers. If not
* specified, no rounding policy is used, and decimals values will
* be returned as null.
*/
rounding?: RoundingPolicy;
}