mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 12:39:30 +08:00
17 lines
No EOL
484 B
Text
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 |