astro-ghostcms/.pnpm-store/v3/files/64/14115002d19610a119cd95b9ee4...

15 lines
424 B
Plaintext

/**
* Turn an mdast `thematicBreak` node into hast.
*
* @param {State} state
* Info passed around.
* @param {ThematicBreak} node
* mdast node.
* @returns {Element}
* hast node.
*/
export function thematicBreak(state: State, node: ThematicBreak): Element;
export type Element = import('hast').Element;
export type ThematicBreak = import('mdast').ThematicBreak;
export type State = import('../state.js').State;