7 lines
385 B
Plaintext
7 lines
385 B
Plaintext
import type { ESLintScopeVariable } from './ESLintScopeVariable';
|
|
import type { Variable } from './Variable';
|
|
export { ESLintScopeVariable } from './ESLintScopeVariable';
|
|
export { ImplicitLibVariable, type ImplicitLibVariableOptions, type LibDefinition, } from './ImplicitLibVariable';
|
|
export { Variable } from './Variable';
|
|
export type ScopeVariable = ESLintScopeVariable | Variable;
|