Skip to content
This repository was archived by the owner on Jan 19, 2019. It is now read-only.

Commit f02b62d

Browse files
committed
Fix references to types in dependencies
1 parent 0a8bf69 commit f02b62d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

analyze-scope.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,17 @@ const Scope = require("eslint-scope/lib/scope").Scope;
1111
const fallback = require("eslint-visitor-keys").getKeys;
1212
const childVisitorKeys = require("./visitor-keys");
1313

14+
/** @typedef {import("estree").Identifier} Identifier */
15+
/** @typedef {import("estree").ClassDeclaration} ClassDeclaration */
16+
/** @typedef {import("estree").ClassExpression} ClassExpression */
17+
/** @typedef {import("estree").CallExpression} CallExpression */
18+
/** @typedef {import("estree").NewExpression} NewExpression */
19+
/** @typedef {import("estree").MethodDefinition} MethodDefinition */
20+
/** @typedef {import("estree").VariableDeclaration} VariableDeclaration */
21+
/** @typedef {import("estree").FunctionDeclaration} FunctionDeclaration */
22+
/** @typedef {import("estree").FunctionExpression} FunctionExpression */
23+
/** @typedef {import("estree").ArrowFunctionExpression} ArrowFunctionExpression */
24+
1425
/**
1526
* Define the override function of `Scope#__define` for global augmentation.
1627
* @param {Function} define The original Scope#__define method.

0 commit comments

Comments
 (0)