Files
memecoin-botV2/.pnpm-store/v10/files/76/edfa556566cd15caf22510dca0a35f787694e4f575180d8067898049143f0a02b194ab9f526ef67f5ed670690de0eb627fb76a0b6fe059ce01bce9b0e38417

9 lines
527 B
Plaintext

import type { TSESTree } from '@typescript-eslint/types';
import { DefinitionBase } from './DefinitionBase';
import { DefinitionType } from './DefinitionType';
export declare class VariableDefinition extends DefinitionBase<DefinitionType.Variable, TSESTree.VariableDeclarator, TSESTree.VariableDeclaration, TSESTree.Identifier> {
readonly isTypeDefinition = false;
readonly isVariableDefinition = true;
constructor(name: TSESTree.Identifier, node: VariableDefinition['node'], decl: TSESTree.VariableDeclaration);
}