Files
memecoin-botV2/.pnpm-store/v10/files/6c/d2a054365faf620a37fba3fd20fb7ae1b7e0c78e674ea434b64a96dbcca7919f57a0b0acb6ab5262bc86d142e52b22cf33e76e19961c1db107850854cc423a

9 lines
445 B
Plaintext

import type { TSESTree } from '@typescript-eslint/types';
import type { ScopeManager } from '../ScopeManager';
import type { Scope } from './Scope';
import { ScopeBase } from './ScopeBase';
import { ScopeType } from './ScopeType';
export declare class SwitchScope extends ScopeBase<ScopeType.switch, TSESTree.SwitchStatement, Scope> {
constructor(scopeManager: ScopeManager, upperScope: SwitchScope['upper'], block: SwitchScope['block']);
}