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 8afd265 commit a914756Copy full SHA for a914756
lib/index.js
@@ -52,7 +52,11 @@ cliCompleter.pluginId = constants.sourceId
52
* Plugin to validate that Markdown links and images reference existing local
53
* files and headings.
54
*
55
- * @type {import('unified').Plugin<[Options?, FileSet?]|[Options?]|void[], Root>}
+ * @typedef {import('unified-lint-rule').Label|import('unified-lint-rule').Severity} Severity
56
+ * @type {import('unified').Plugin<[(Options|[Severity, Options?])?, FileSet?], Root>}
57
+ * https://github.com/microsoft/TypeScript/pull/48132
58
+ * @param [rawOptions]
59
+ * @param [fileSet]
60
*/
61
export default function remarkValidateLinks(rawOptions, fileSet) {
62
// Attach a `completer`.
0 commit comments