Files
memecoin-botV2/.pnpm-store/v10/files/10/48cbfc9711f79eb8508ead541a34da9acab602740f04336ae2d6ffd18986f2ef5fd0f1d5073868185ce755d49841f372c439fdbaa13830c93164b086c0cd2c

25 lines
961 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ScopeType = void 0;
var ScopeType;
(function (ScopeType) {
ScopeType["block"] = "block";
ScopeType["catch"] = "catch";
ScopeType["class"] = "class";
ScopeType["classFieldInitializer"] = "class-field-initializer";
ScopeType["classStaticBlock"] = "class-static-block";
ScopeType["conditionalType"] = "conditionalType";
ScopeType["for"] = "for";
ScopeType["function"] = "function";
ScopeType["functionExpressionName"] = "function-expression-name";
ScopeType["functionType"] = "functionType";
ScopeType["global"] = "global";
ScopeType["mappedType"] = "mappedType";
ScopeType["module"] = "module";
ScopeType["switch"] = "switch";
ScopeType["tsEnum"] = "tsEnum";
ScopeType["tsModule"] = "tsModule";
ScopeType["type"] = "type";
ScopeType["with"] = "with";
})(ScopeType || (exports.ScopeType = ScopeType = {}));