UNPKG

@jqassistant/ts-lce

Version:

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

20 lines (19 loc) 572 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LCEImportDeclaration = void 0; const concept_1 = require("../concept"); class LCEImportDeclaration extends concept_1.LCEConcept { identifier; alias; isDefault; kind; static conceptId = "import-declaration"; constructor(identifier, alias, isDefault, kind) { super(); this.identifier = identifier; this.alias = alias; this.isDefault = isDefault; this.kind = kind; } } exports.LCEImportDeclaration = LCEImportDeclaration;