blob: f5e65e6b3d99b32dbab14879daca9b738adbfda8 [file] [log] [blame]
import { TSESTree } from '../ts-estree';
import { Reference } from './Reference';
import { Definition } from './Definition';
import { Scope } from './Scope';
interface Variable {
name: string;
identifiers: TSESTree.Identifier[];
references: Reference[];
defs: Definition[];
eslintUsed?: boolean;
stack?: unknown;
tainted?: boolean;
scope?: Scope;
}
declare const Variable: new () => Variable;
export { Variable };
//# sourceMappingURL=Variable.d.ts.map