/** * A Boolean node. This will render it down and validate the value * @module BooleanProp */ /** imports **/ import BaseProp from "./BaseProp"; /** * A Boolean property. This will render it down and validate the value. */ export default class BooleanProp 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=BooleanProp.d.ts.map