Urara-Blog/node_modules/.pnpm-store/v3/files/f8/495566e8b66d4aab2bf1bab043e2e50d46621d43ade1bd447efa56176551e215cd31fcfca99c4e2665c91bfbee22b2f1a027f4d31c0a977bf07906016de24d
2022-08-14 01:14:53 +08:00

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