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 c92cb16 commit 34430a7Copy full SHA for 34430a7
packages/doxdox-parser-jsdoc/src/index.ts
@@ -10,7 +10,7 @@ import temp from 'temp';
10
11
import { findParentNodeModules, sanitizePath, slugify } from 'doxdox-core';
12
13
-import { File } from 'doxdox-core';
+import { File, Method } from 'doxdox-core';
14
15
import { Jsdoc } from './types';
16
@@ -81,7 +81,7 @@ const parser = async (cwd: string, path: string): Promise<File> => {
81
params,
82
returns,
83
private: isPrivate
84
- };
+ } as Method;
85
})
86
.sort((a, b) => {
87
if (a.name.toLocaleLowerCase() < b.name.toLocaleLowerCase()) {
0 commit comments