/** * An Any property - a type of no fixed hairstyle. This will validate the value it is connected with and render it down * * @module AnyProp */ /** imports **/ import BaseProp from "./BaseProp"; /** * An Any property - a type of no fixed hairstyle. This will validate the value it is connected with and render it down */ export default class AnyProp extends BaseProp { /** * @param {any} node The node being managed * @param {string} name The name of the node */ constructor(node: any, name: string); /** * The list of decorators templates supported by this type */ decs(): string[]; /** * The template to render this type */ readonly prop: string; /** * Returns a string array of needed imports */ imports(): string[]; /** * Gets the validators that are actually in use so that a single import can be created */ validationImports(): string[]; /** * Things like extra classes and enums that need to be at the top level of the module */ headers(): string[]; } //# sourceMappingURL=AnyProp.d.ts.map