astro-ghostcms/.pnpm-store/v3/files/de/979400e217da0808132c0442fda...

10 lines
505 B
Plaintext
Raw Permalink Normal View History

2024-02-14 14:10:47 +00:00
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';
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