UNPKG

class-transformer

Version:

Proper decorator-based transformation / serialization / deserialization of plain javascript objects to class constructors

10 lines (9 loc) 282 B
import { TransformationType } from '../../enums'; import { ClassTransformOptions } from '../class-transformer-options.interface'; export interface TransformFnParams { value: any; key: string; obj: any; type: TransformationType; options: ClassTransformOptions; }