remark-lint-unordered-list-marker-style
Version:
remark-lint rule to warn when markers of unordered lists violate a given style
12 lines • 367 B
TypeScript
export default remarkLintUnorderedListMarkerStyle;
/**
* Configuration.
*/
export type Options = Style | "consistent";
/**
* Styles.
*/
export type Style = "*" | "+" | "-";
declare const remarkLintUnorderedListMarkerStyle: import("unified-lint-rule").Plugin<Root, Options | null | undefined>;
import type { Root } from 'mdast';
//# sourceMappingURL=index.d.ts.map