Files
memecoin-botV2/.pnpm-store/v10/files/6f/9753b50440f99b67ad283d4bc73117599687171d68fdb466f1ce0abd0d8731af2957af911fe5c195329c5bf684385ce8c6ac7961f1bb406a52f359a2bf21b0

9 lines
544 B
Plaintext

import type { TSESTree } from '@typescript-eslint/types';
import { DefinitionBase } from './DefinitionBase';
import { DefinitionType } from './DefinitionType';
export declare class TypeDefinition extends DefinitionBase<DefinitionType.Type, TSESTree.TSInterfaceDeclaration | TSESTree.TSMappedType | TSESTree.TSTypeAliasDeclaration | TSESTree.TSTypeParameter, null, TSESTree.Identifier> {
readonly isTypeDefinition = true;
readonly isVariableDefinition = false;
constructor(name: TSESTree.Identifier, node: TypeDefinition['node']);
}