mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 11:49:30 +08:00
10 lines
No EOL
563 B
Text
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 |