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