eslint-plugin-jsdoc 56.1.1 → 56.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import iterateJsdoc, { getSettings, parseComment } from './iterateJsdoc.js';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
default: typeof iterateJsdoc;
|
|
4
|
+
getSettings: typeof getSettings;
|
|
5
|
+
parseComment: typeof parseComment;
|
|
5
6
|
};
|
|
6
|
-
export =
|
|
7
|
+
export = _default;
|
package/dist/iterateJsdoc.cts
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import iterateJsdoc, {getSettings, parseComment} from './iterateJsdoc.js';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
default: typeof iterateJsdoc,
|
|
5
|
-
getSettings: typeof getSettings,
|
|
6
|
-
parseComment: typeof parseComment
|
|
3
|
+
export = {
|
|
4
|
+
default: iterateJsdoc as typeof iterateJsdoc,
|
|
5
|
+
getSettings: getSettings as typeof getSettings,
|
|
6
|
+
parseComment: parseComment as typeof parseComment
|
|
7
7
|
};
|
|
8
|
-
|
|
9
|
-
export = exp;
|
package/package.json
CHANGED
package/src/iterateJsdoc.cts
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import iterateJsdoc, {getSettings, parseComment} from './iterateJsdoc.js';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
default: typeof iterateJsdoc,
|
|
5
|
-
getSettings: typeof getSettings,
|
|
6
|
-
parseComment: typeof parseComment
|
|
3
|
+
export = {
|
|
4
|
+
default: iterateJsdoc as typeof iterateJsdoc,
|
|
5
|
+
getSettings: getSettings as typeof getSettings,
|
|
6
|
+
parseComment: parseComment as typeof parseComment
|
|
7
7
|
};
|
|
8
|
-
|
|
9
|
-
export = exp;
|