UNPKG

484 BTypeScriptView Raw
1import { TSESTree } from '../ts-estree';
2import { Reference } from './Reference';
3import { Definition } from './Definition';
4import { Scope } from './Scope';
5interface Variable {
6 name: string;
7 identifiers: TSESTree.Identifier[];
8 references: Reference[];
9 defs: Definition[];
10 eslintUsed?: boolean;
11 stack?: unknown;
12 tainted?: boolean;
13 scope?: Scope;
14}
15declare const Variable: new () => Variable;
16export { Variable };
17//# sourceMappingURL=Variable.d.ts.map
\No newline at end of file