eslint-plugin-jsdoc 56.1.0 → 56.1.1
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,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
getSettings:
|
|
4
|
-
parseComment:
|
|
1
|
+
declare const exp: {
|
|
2
|
+
default: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
|
|
3
|
+
getSettings: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
|
|
4
|
+
parseComment: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
|
|
5
5
|
};
|
|
6
6
|
export = exp;
|
package/dist/iterateJsdoc.cts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import iterateJsdoc, {getSettings, parseComment
|
|
1
|
+
import iterateJsdoc, {getSettings, parseComment} from './iterateJsdoc.js';
|
|
2
2
|
|
|
3
|
-
const exp =
|
|
3
|
+
const exp = {
|
|
4
|
+
default: typeof iterateJsdoc,
|
|
4
5
|
getSettings: typeof getSettings,
|
|
5
6
|
parseComment: typeof parseComment
|
|
6
7
|
};
|
package/package.json
CHANGED
package/src/iterateJsdoc.cts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import iterateJsdoc, {getSettings, parseComment
|
|
1
|
+
import iterateJsdoc, {getSettings, parseComment} from './iterateJsdoc.js';
|
|
2
2
|
|
|
3
|
-
const exp =
|
|
3
|
+
const exp = {
|
|
4
|
+
default: typeof iterateJsdoc,
|
|
4
5
|
getSettings: typeof getSettings,
|
|
5
6
|
parseComment: typeof parseComment
|
|
6
7
|
};
|