IScopeThroughIdentifiersTraverserCallbackData.ts 319 B

123456789
  1. import * as eslintScope from 'eslint-scope';
  2. import { TNodeWithLexicalScope } from '../../types/node/TNodeWithLexicalScope';
  3. export interface IScopeThroughIdentifiersTraverserCallbackData {
  4. isGlobalDeclaration: boolean;
  5. reference: eslintScope.Reference;
  6. variableLexicalScopeNode: TNodeWithLexicalScope;
  7. }