.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / @typescript-eslint / experimental-utils / dist / ts-eslint-scope / Variable.d.ts
1 import { TSESTree } from '../ts-estree';
2 import { Reference } from './Reference';
3 import { Definition } from './Definition';
4 import { Scope } from './Scope';
5 interface 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 }
15 declare const Variable: new () => Variable;
16 export { Variable };
17 //# sourceMappingURL=Variable.d.ts.map