// @ts-check export { applyFix, applyFixes, getVersion } from "./markdownlint.mjs"; export { resolveModule } from "./resolve-module.cjs"; /** @typedef {import("./markdownlint.mjs").Configuration} Configuration */ /** @typedef {import("./markdownlint.mjs").ConfigurationParser} ConfigurationParser */ /** @typedef {import("./markdownlint.mjs").ConfigurationStrict} ConfigurationStrict */ /** @typedef {import("./markdownlint.mjs").FixInfo} FixInfo */ /** @typedef {import("./markdownlint.mjs").LintCallback} LintCallback */ /** @typedef {import("./markdownlint.mjs").LintContentCallback} LintContentCallback */ /** @typedef {import("./markdownlint.mjs").LintError} LintError */ /** @typedef {import("./markdownlint.mjs").LintResults} LintResults */ /** @typedef {import("./markdownlint.mjs").MarkdownItFactory} MarkdownItFactory */ /** @typedef {import("./markdownlint.mjs").MarkdownItToken} MarkdownItToken */ /** @typedef {import("./markdownlint.mjs").MarkdownParsers} MarkdownParsers */ /** @typedef {import("./markdownlint.mjs").MicromarkToken} MicromarkToken */ /** @typedef {import("./markdownlint.mjs").MicromarkTokenType} MicromarkTokenType */ /** @typedef {import("./markdownlint.mjs").Options} Options */ /** @typedef {import("./markdownlint.mjs").ParserMarkdownIt} ParserMarkdownIt */ /** @typedef {import("./markdownlint.mjs").ParserMicromark} ParserMicromark */ /** @typedef {import("./markdownlint.mjs").Plugin} Plugin */ /** @typedef {import("./markdownlint.mjs").ReadConfigCallback} ReadConfigCallback */ /** @typedef {import("./markdownlint.mjs").ResolveConfigExtendsCallback} ResolveConfigExtendsCallback */ /** @typedef {import("./markdownlint.mjs").Rule} Rule */ /** @typedef {import("./markdownlint.mjs").RuleConfiguration} RuleConfiguration */ /** @typedef {import("./markdownlint.mjs").RuleFunction} RuleFunction */ /** @typedef {import("./markdownlint.mjs").RuleOnError} RuleOnError */ /** @typedef {import("./markdownlint.mjs").RuleOnErrorFixInfo} RuleOnErrorFixInfo */ /** @typedef {import("./markdownlint.mjs").RuleOnErrorFixInfoNormalized} RuleOnErrorFixInfoNormalized */ /** @typedef {import("./markdownlint.mjs").RuleOnErrorInfo} RuleOnErrorInfo */ /** @typedef {import("./markdownlint.mjs").RuleParams} RuleParams */ /** @typedef {import("./markdownlint.mjs").ToStringCallback} ToStringCallback */