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

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