From 1f0d71f415888e8f8472060535d0d6ba0a54b207 Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Thu, 18 Apr 2024 12:16:23 -0400 Subject: [PATCH] Fix format and lint --- src/compiler/signatureObjectInternals.ts | 8 ++++++-- src/services/services.ts | 2 -- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/compiler/signatureObjectInternals.ts b/src/compiler/signatureObjectInternals.ts index 296305e73e8..0437809e7ff 100644 --- a/src/compiler/signatureObjectInternals.ts +++ b/src/compiler/signatureObjectInternals.ts @@ -1,4 +1,8 @@ -import { JSDocTagInfo, Signature, SymbolDisplayPart } from "./types"; +import { + JSDocTagInfo, + Signature, + SymbolDisplayPart, +} from "./types"; /** @internal */ export class SignatureObjectInternals { @@ -8,7 +12,7 @@ export class SignatureObjectInternals { getDocumentationComment(_signature: Signature): SymbolDisplayPart[] { throw new TypeError("Not implemented."); } - + getJsDocTags(signature: Signature): JSDocTagInfo[]; getJsDocTags(_signature: Signature): JSDocTagInfo[] { throw new TypeError("Not implemented."); diff --git a/src/services/services.ts b/src/services/services.ts index b6e643d4476..40c5788485b 100644 --- a/src/services/services.ts +++ b/src/services/services.ts @@ -1,5 +1,4 @@ import { - SignatureObject, SymbolObject, } from "../compiler/objectConstructors"; import { SignatureObjectInternals } from "../compiler/signatureObjectInternals"; @@ -250,7 +249,6 @@ import { TodoCommentDescriptor, toPath, tracing, - TransientSymbol, Type, TypeChecker, typeToDisplayParts,