UNPKG

remark-lint-no-undefined-references

Version:

remark-lint rule to warn when references to undefined definitions are found

18 lines 619 B
export default remarkLintNoUndefinedReferences; /** * Configuration. */ export type Options = { /** * List of values to allow between `[` and `]` (optional) */ allow?: ReadonlyArray<RegExp | string> | null | undefined; /** * Allow shortcut references, which are just brackets such as `[text]` * (`boolean`, default: `false`) */ allowShortcutLink?: boolean | null | undefined; }; declare const remarkLintNoUndefinedReferences: import("unified-lint-rule").Plugin<Root, Readonly<Options> | null | undefined>; import type { Root } from 'mdast'; //# sourceMappingURL=index.d.ts.map