Urara-Blog/node_modules/.pnpm-store/v3/files/76/0bc0a6c6912ab0080c0787a344776edc1b40a5d95e6b371d41844dcb549d460a8f90681a718793e1c6bb18dfebcc267b217dba69d0e0d6793d3865c73b6137
2022-08-14 01:14:53 +08:00

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