site/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.d.ts

9 lines
252 B
TypeScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
/**
* @param {Heading} node
* @param {State} state
* @returns {boolean}
*/
export function formatHeadingAsSetext(node: Heading, state: State): boolean;
export type Heading = import('mdast').Heading;
export type State = import('../types.js').State;