UNPKG

@jqassistant/ts-lce

Version:

Tool to extract language concepts from a TypeScript codebase and export them to a JSON file.

16 lines (15 loc) 530 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LCEReactComponent = void 0; const concept_1 = require("../../core/concept"); class LCEReactComponent extends concept_1.LCENamedConcept { componentName; renderedElements; static conceptId = "react-component"; constructor(fqn, componentName, renderedElements) { super(fqn); this.componentName = componentName; this.renderedElements = renderedElements; } } exports.LCEReactComponent = LCEReactComponent;