Files
memecoin-botV2/.pnpm-store/v10/files/fb/3d2890bbbafab878d27d765109db49b3a3be26dcb2054a60fca8a91d1354affb7f3af8a3cccf0f80e22fed8828c69a76e75c52ea0289b6a22dc6373bf87361

12 lines
424 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TSEnumScope = void 0;
const ScopeBase_1 = require("./ScopeBase");
const ScopeType_1 = require("./ScopeType");
class TSEnumScope extends ScopeBase_1.ScopeBase {
constructor(scopeManager, upperScope, block) {
super(scopeManager, ScopeType_1.ScopeType.tsEnum, upperScope, block, false);
}
}
exports.TSEnumScope = TSEnumScope;