site/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.d.ts
2024-10-14 08:09:33 +02:00

9 lines
252 B
TypeScript

/**
* @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;