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;
1111const fallback = require ( "eslint-visitor-keys" ) . getKeys ;
1212const 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.
You can’t perform that action at this time.
0 commit comments