@typescript-eslint/scope-manager
Version:
TypeScript scope analyser for ESLint
9 lines (8 loc) • 514 B
TypeScript
import type { NodeWithParent, TSESTree } from '@typescript-eslint/types';
import { DefinitionBase } from './DefinitionBase';
import { DefinitionType } from './DefinitionType';
export declare class ImplicitGlobalVariableDefinition extends DefinitionBase<DefinitionType.ImplicitGlobalVariable, NodeWithParent, null, TSESTree.BindingName> {
readonly isTypeDefinition = false;
readonly isVariableDefinition = true;
constructor(name: TSESTree.BindingName, node: ImplicitGlobalVariableDefinition['node']);
}