remark-lint-heading-style
Version:
remark-lint rule to warn when heading style violates the given style
12 lines • 359 B
TypeScript
export default remarkLintHeadingStyle;
/**
* Configuration.
*/
export type Options = Style | "consistent";
/**
* Styles.
*/
export type Style = "atx" | "atx-closed" | "setext";
declare const remarkLintHeadingStyle: import("unified-lint-rule").Plugin<Root, Options | null | undefined>;
import type { Root } from 'mdast';
//# sourceMappingURL=index.d.ts.map