mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 05:58:15 +08:00
15 lines
382 B
TypeScript
15 lines
382 B
TypeScript
|
/**
|
||
|
* Turn an mdast `strong` node into hast.
|
||
|
*
|
||
|
* @param {State} state
|
||
|
* Info passed around.
|
||
|
* @param {Strong} node
|
||
|
* mdast node.
|
||
|
* @returns {Element}
|
||
|
* hast node.
|
||
|
*/
|
||
|
export function strong(state: State, node: Strong): Element;
|
||
|
export type Element = import("hast").Element;
|
||
|
export type Strong = import("mdast").Strong;
|
||
|
export type State = import("../state.js").State;
|