mirror of
https://github.com/theoludwig/markdownlint-rule-relative-links.git
synced 2025-05-27 11:37:24 +02:00
9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
import type MarkdownIt from "markdown-it"
|
|
import type { Rule } from "markdownlint"
|
|
|
|
declare const relativeLinksRule: Rule
|
|
export default relativeLinksRule
|
|
|
|
declare const markdownIt: MarkdownIt
|
|
export { markdownIt }
|