UNPKG

301 BTypeScriptView Raw
1import { TransformFnParams, TransformOptions } from '../interfaces';
2/**
3 * Defines a custom logic for value transformation.
4 *
5 * Can be applied to properties only.
6 */
7export declare function Transform(transformFn: (params: TransformFnParams) => any, options?: TransformOptions): PropertyDecorator;