Files
memecoin-botV2/.pnpm-store/v10/files/73/9f95e7c13c6baacddf026150c099dd9676b2a81f6952825f16e442bc4ec3eeaf8306c290eacf02ed87315da4f595c5a947a21d8eabc0d0388849887d7111e5

36 lines
1.4 KiB
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ESLintScopeVariable = void 0;
const VariableBase_1 = require("./VariableBase");
/**
* ESLint defines global variables using the eslint-scope Variable class
* This is declared here for consumers to use
*/
class ESLintScopeVariable extends VariableBase_1.VariableBase {
/**
* Written to by ESLint.
* If this key exists, this variable is a global variable added by ESLint.
* If this is `true`, this variable can be assigned arbitrary values.
* If this is `false`, this variable is readonly.
*/
writeable; // note that this isn't a typo - ESlint uses this spelling here
/**
* Written to by ESLint.
* This property is undefined if there are no globals comment directives.
* The array of globals comment directives which defined this global variable in the source code file.
*/
eslintExplicitGlobal;
/**
* Written to by ESLint.
* The configured value in config files. This can be different from `variable.writeable` if there are globals comment directives.
*/
eslintImplicitGlobalSetting;
/**
* Written to by ESLint.
* If this key exists, it is a global variable added by ESLint.
* If `true`, this global variable was defined by a globals comment directive in the source code file.
*/
eslintExplicitGlobalComments;
}
exports.ESLintScopeVariable = ESLintScopeVariable;