Urara-Blog/node_modules/.pnpm-store/v3/files/3a/06a53cce5f293718bd66a66cb7a6a613a3677f95eeef1b0d187faba6a0e9dbadd5b55d707c02998440df3f997359623432653592bf0ae5d9020e537b75104f
2022-08-14 01:14:53 +08:00

17 lines
No EOL
484 B
Text

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