homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge
10 lines (9 loc) • 420 B
TypeScript
import { TypeHelpOptions, TypeOptions } from "./ExposeExcludeOptions";
export declare class TypeMetadata {
target: Function;
propertyName: string;
reflectedType: any;
typeFunction: (options?: TypeHelpOptions) => Function;
options: TypeOptions;
constructor(target: Function, propertyName: string, reflectedType: any, typeFunction: (options?: TypeHelpOptions) => Function, options: TypeOptions);
}