/** * An Enumeration node. This will validate the value it is connected with and render it down * @module EnumProp */ import BaseProp from "./BaseProp"; /** * An Enumeration node. This will validate the value it is connected with and render it down */ export default class EnumProp extends BaseProp { /** * * @param {any} node The node being managed * @param {string} name The name of the node */ constructor(node: any, name: string); /** * The generated name of the enum */ enumType: string; /** * The enum contents */ items?: any[]; /** * Things like extra classes and enums that need to be at the top level of the module */ headers(): string[]; /** * The template to render this type */ readonly prop: string; } //# sourceMappingURL=EnumProp.d.ts.map