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

Commit

Permalink
Fix references to types in dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sandersn committed Dec 28, 2018
1 parent 0a8bf69 commit f02b62d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions analyze-scope.js
Expand Up @@ -11,6 +11,17 @@ const Scope = require("eslint-scope/lib/scope").Scope;
const fallback = require("eslint-visitor-keys").getKeys;
const childVisitorKeys = require("./visitor-keys");

/** @typedef {import("estree").Identifier} Identifier */
/** @typedef {import("estree").ClassDeclaration} ClassDeclaration */
/** @typedef {import("estree").ClassExpression} ClassExpression */
/** @typedef {import("estree").CallExpression} CallExpression */
/** @typedef {import("estree").NewExpression} NewExpression */
/** @typedef {import("estree").MethodDefinition} MethodDefinition */
/** @typedef {import("estree").VariableDeclaration} VariableDeclaration */
/** @typedef {import("estree").FunctionDeclaration} FunctionDeclaration */
/** @typedef {import("estree").FunctionExpression} FunctionExpression */
/** @typedef {import("estree").ArrowFunctionExpression} ArrowFunctionExpression */

/**
* Define the override function of `Scope#__define` for global augmentation.
* @param {Function} define The original Scope#__define method.
Expand Down

0 comments on commit f02b62d

Please sign in to comment.