mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 18:49:30 +08:00
10 lines
No EOL
592 B
Text
10 lines
No EOL
592 B
Text
import { TSESTree } from '@typescript-eslint/types';
|
|
import { DefinitionType } from './DefinitionType';
|
|
import { DefinitionBase } from './DefinitionBase';
|
|
declare class ImplicitGlobalVariableDefinition extends DefinitionBase<DefinitionType.ImplicitGlobalVariable, TSESTree.Node, null, TSESTree.BindingName> {
|
|
constructor(name: TSESTree.BindingName, node: ImplicitGlobalVariableDefinition['node']);
|
|
readonly isTypeDefinition = false;
|
|
readonly isVariableDefinition = true;
|
|
}
|
|
export { ImplicitGlobalVariableDefinition };
|
|
//# sourceMappingURL=ImplicitGlobalVariableDefinition.d.ts.map |