import { ParamTypes } from '../types/Param.types'; import { ClassTransformOptions } from 'class-transformer'; export interface ParamMetadataArgs { target: any; method: string; index: number; type: ParamTypes; reflectedType: any; transform?: (value: any, socket: any) => Promise | any; classTransformOptions?: ClassTransformOptions; value?: any; }