UNPKG

js-ast-parser

Version:
14 lines 477 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DefinitionType = void 0; class DefinitionType { } exports.DefinitionType = DefinitionType; DefinitionType.FUNCTION = 'function'; DefinitionType.CONST = 'const'; DefinitionType.VARIABLE = 'variable'; DefinitionType.METHOD = 'method'; DefinitionType.PROPERTY = 'property'; DefinitionType.CLASS = 'class'; DefinitionType.IMPORT = 'import'; //# sourceMappingURL=definitionType.js.map