Urara-Blog/node_modules/.pnpm-store/v3/files/07/d2356796485c0fbc766a53037ab4b860c2efe460fd753d8eed775ae70d1c30aa4d8b178f398ad4c3acd3bd6aa0e99dd98cb9f56ed421ded766ae3a7cf8ca27
2022-08-14 01:14:53 +08:00

11 lines
No EOL
527 B
Text

import { TSESTree } from '@typescript-eslint/types';
import { Scope } from './Scope';
import { ScopeBase } from './ScopeBase';
import { ScopeType } from './ScopeType';
import { ScopeManager } from '../ScopeManager';
declare class WithScope extends ScopeBase<ScopeType.with, TSESTree.WithStatement, Scope> {
constructor(scopeManager: ScopeManager, upperScope: WithScope['upper'], block: WithScope['block']);
close(scopeManager: ScopeManager): Scope | null;
}
export { WithScope };
//# sourceMappingURL=WithScope.d.ts.map