eslint-scope.d.ts 270 B

1234567891011121314
  1. /* eslint-disable */
  2. import * as eslint from 'eslint';
  3. import * as eslintScope from 'eslint-scope';
  4. declare module 'eslint-scope' {
  5. interface Variable {
  6. scope: Scope;
  7. }
  8. interface Definition {
  9. type: eslint.Scope.Definition['type'];
  10. }
  11. }