Urara-Blog/node_modules/.pnpm-store/v3/files/db/68178f35368fde9adaa0025b2ede91cc8b2767f9a085e46895aba6650367a6469ed06a097ea074ef8d13e62449f959e23920bbb3c5b7e9c386d9516d776089
2022-08-14 01:14:53 +08:00

10 lines
No EOL
563 B
Text

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