homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge
10 lines (9 loc) • 505 B
TypeScript
import { TransformOptions } from "./ExposeExcludeOptions";
import { TransformationType } from "../TransformOperationExecutor";
export declare class TransformMetadata {
target: Function;
propertyName: string;
transformFn: (value: any, obj: any, transformationType: TransformationType) => any;
options: TransformOptions;
constructor(target: Function, propertyName: string, transformFn: (value: any, obj: any, transformationType: TransformationType) => any, options: TransformOptions);
}