UNPKG

@typescript-eslint/scope-manager

Version:
14 lines (13 loc) 544 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ImportBindingDefinition = void 0; const DefinitionBase_1 = require("./DefinitionBase"); const DefinitionType_1 = require("./DefinitionType"); class ImportBindingDefinition extends DefinitionBase_1.DefinitionBase { isTypeDefinition = true; isVariableDefinition = true; constructor(name, node, decl) { super(DefinitionType_1.DefinitionType.ImportBinding, name, node, decl); } } exports.ImportBindingDefinition = ImportBindingDefinition;