UNPKG

337 BTypeScriptView Raw
1import { ClassTransformOptions, ClassConstructor } from '../interfaces';
2/**
3 * Return the class instance only with the exposed properties.
4 *
5 * Can be applied to functions and getters/setters only.
6 */
7export declare function TransformPlainToInstance(classType: ClassConstructor<any>, params?: ClassTransformOptions): MethodDecorator;