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

10 lines
No EOL
488 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 SwitchScope extends ScopeBase<ScopeType.switch, TSESTree.SwitchStatement, Scope> {
constructor(scopeManager: ScopeManager, upperScope: SwitchScope['upper'], block: SwitchScope['block']);
}
export { SwitchScope };
//# sourceMappingURL=SwitchScope.d.ts.map