We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 142e3c0 commit b8bc24aCopy full SHA for b8bc24a
src/exports/package.ts
@@ -10,4 +10,4 @@ export type {
10
ExportBit,
11
SlotBit,
12
Bit,
13
-} from '../types.d'
+} from '../types'
src/files/typescript.ts
@@ -26,9 +26,9 @@ export function parseTSFile({
26
27
const tsdoc_node_parent = declaration.getFirstChildIfKind(ts.SyntaxKind.JSDoc)
28
? //? Check whether the declaration has a comment
29
- declaration
+ declaration
30
: //? Find the comment by traversing up the parent, this should be safe here
31
32
.getAncestors()
33
.find((ancestor) => !!ancestor.getFirstChildIfKind(ts.SyntaxKind.JSDoc))
34
0 commit comments