This repository was archived by the owner on Jan 19, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,17 @@ const Scope = require("eslint-scope/lib/scope").Scope;
11
11
const fallback = require ( "eslint-visitor-keys" ) . getKeys ;
12
12
const childVisitorKeys = require ( "./visitor-keys" ) ;
13
13
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
+
14
25
/**
15
26
* Define the override function of `Scope#__define` for global augmentation.
16
27
* @param {Function } define The original Scope#__define method.
You can’t perform that action at this time.
0 commit comments