Files
memecoin-botV2/.pnpm-store/v10/files/c3/fdd02ea0b3769b54a03a5365ee7eb36d87d0ba9033f87ab786d4c4c380cd18705af7077a5505787412071b0da50c8808f12d8d3de71e1ba29415a064d5e8cc

9 lines
494 B
Plaintext

import type { TSESTree } from '@typescript-eslint/types';
import { DefinitionBase } from './DefinitionBase';
import { DefinitionType } from './DefinitionType';
export declare class ClassNameDefinition extends DefinitionBase<DefinitionType.ClassName, TSESTree.ClassDeclaration | TSESTree.ClassExpression, null, TSESTree.Identifier> {
readonly isTypeDefinition = true;
readonly isVariableDefinition = true;
constructor(name: TSESTree.Identifier, node: ClassNameDefinition['node']);
}