UNPKG

remark-lint-first-heading-level

Version:

remark-lint rule to warn when the first heading has a level other than a specified value

8 lines 298 B
export default remarkLintFirstHeadingLevel; /** * Configuration. */ export type Options = 1 | 2 | 3 | 4 | 5 | 6; declare const remarkLintFirstHeadingLevel: import("unified-lint-rule").Plugin<Root, Options | null | undefined>; import type { Root } from 'mdast'; //# sourceMappingURL=index.d.ts.map