astro-ghostcms/.pnpm-store/v3/files/31/55c8d9a3e6699ec075c129994dc...

18 lines
736 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
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';
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']);
defineImplicitVariable(name: string, options: ImplicitLibVariableOptions): void;
close(scopeManager: ScopeManager): Scope | null;
}
export { GlobalScope };
//# sourceMappingURL=GlobalScope.d.ts.map