Files
memecoin-botV2/.pnpm-store/v10/files/e5/a8692432efbecdcfc5b90ba9682873a0f420c53e4fca6f33701e219aac049e4fb79a6725dbc888131534d0ac7418d6fd62b9516f071cbac234d877c1e08dc2

9 lines
514 B
Plaintext

import type { NodeWithParent, TSESTree } from '@typescript-eslint/types';
import { DefinitionBase } from './DefinitionBase';
import { DefinitionType } from './DefinitionType';
export declare class ImplicitGlobalVariableDefinition extends DefinitionBase<DefinitionType.ImplicitGlobalVariable, NodeWithParent, null, TSESTree.BindingName> {
readonly isTypeDefinition = false;
readonly isVariableDefinition = true;
constructor(name: TSESTree.BindingName, node: ImplicitGlobalVariableDefinition['node']);
}