mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 10:28:14 +08:00
15 lines
424 B
TypeScript
15 lines
424 B
TypeScript
/**
|
|
* 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;
|