mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 05:19:13 +08:00
10 lines
No EOL
579 B
Text
10 lines
No EOL
579 B
Text
import { TSESTree } from '@typescript-eslint/types';
|
|
import { DefinitionType } from './DefinitionType';
|
|
import { DefinitionBase } from './DefinitionBase';
|
|
declare class TypeDefinition extends DefinitionBase<DefinitionType.Type, TSESTree.TSInterfaceDeclaration | TSESTree.TSTypeAliasDeclaration | TSESTree.TSTypeParameter, null, TSESTree.Identifier> {
|
|
constructor(name: TSESTree.Identifier, node: TypeDefinition['node']);
|
|
readonly isTypeDefinition = true;
|
|
readonly isVariableDefinition = false;
|
|
}
|
|
export { TypeDefinition };
|
|
//# sourceMappingURL=TypeDefinition.d.ts.map |