eslint-plugin-jsdoc 56.0.1 → 56.0.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,2 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
import { getSettings, parseComment, type JsdocVisitor, type RuleConfig } from './iterateJsdoc.js';
|
|
2
|
+
declare const exp: ((iterator: JsdocVisitor, ruleConfig: RuleConfig) => import("eslint").Rule.RuleModule) & {
|
|
3
|
+
getSettings: typeof getSettings;
|
|
4
|
+
parseComment: typeof parseComment;
|
|
5
|
+
};
|
|
6
|
+
export = exp;
|
package/dist/iterateJsdoc.cts
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
|
-
import iterateJsdoc, {getSettings, parseComment} from './iterateJsdoc.js';
|
|
1
|
+
import iterateJsdoc, {getSettings, parseComment, type JsdocVisitor, type RuleConfig} from './iterateJsdoc.js';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const exp = iterateJsdoc as ((iterator: JsdocVisitor, ruleConfig: RuleConfig) => import('eslint').Rule.RuleModule) & {
|
|
4
|
+
getSettings: typeof getSettings,
|
|
5
|
+
parseComment: typeof parseComment
|
|
6
|
+
};
|
|
4
7
|
|
|
5
|
-
|
|
6
|
-
|
|
8
|
+
exp.getSettings = getSettings;
|
|
9
|
+
exp.parseComment = parseComment;
|
|
10
|
+
|
|
11
|
+
export = exp;
|
package/package.json
CHANGED
package/src/iterateJsdoc.cts
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
|
-
import iterateJsdoc, {getSettings, parseComment} from './iterateJsdoc.js';
|
|
1
|
+
import iterateJsdoc, {getSettings, parseComment, type JsdocVisitor, type RuleConfig} from './iterateJsdoc.js';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
const exp = iterateJsdoc as ((iterator: JsdocVisitor, ruleConfig: RuleConfig) => import('eslint').Rule.RuleModule) & {
|
|
4
|
+
getSettings: typeof getSettings,
|
|
5
|
+
parseComment: typeof parseComment
|
|
6
|
+
};
|
|
4
7
|
|
|
5
|
-
|
|
6
|
-
|
|
8
|
+
exp.getSettings = getSettings;
|
|
9
|
+
exp.parseComment = parseComment;
|
|
10
|
+
|
|
11
|
+
export = exp;
|