mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 07:09:12 +08:00
11 lines
No EOL
527 B
Text
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 |