Files
memecoin-botV2/.pnpm-store/v10/files/12/3a1bb8820967f41f88aea8b6f7a2efc1027dfc100640c02c1101231b42b0609ae930311e4afe9feeb650cb6512b82cd7d935fa2607199a742f5e97ba09cdb3

18 lines
719 B
Plaintext

import type { TSESTree } from '@typescript-eslint/types';
import type { ScopeManager } from '../ScopeManager';
import type { ImplicitLibVariableOptions } from '../variable';
import type { Scope } from './Scope';
import { ScopeBase } from './ScopeBase';
import { ScopeType } from './ScopeType';
export declare class GlobalScope extends ScopeBase<ScopeType.global, TSESTree.Program,
/**
* The global scope has no parent.
*/
null> {
private readonly implicit;
constructor(scopeManager: ScopeManager, block: GlobalScope['block']);
addVariables(names: string[]): void;
close(scopeManager: ScopeManager): Scope | null;
defineImplicitVariable(name: string, options: ImplicitLibVariableOptions): void;
}