20 lines
539 B
TypeScript
20 lines
539 B
TypeScript
![]() |
/**
|
||
|
* @typedef {import('hast').Element} Element
|
||
|
* @typedef {import('mdast').Emphasis} Emphasis
|
||
|
* @typedef {import('../state.js').State} State
|
||
|
*/
|
||
|
/**
|
||
|
* Turn an mdast `emphasis` node into hast.
|
||
|
*
|
||
|
* @param {State} state
|
||
|
* Info passed around.
|
||
|
* @param {Emphasis} node
|
||
|
* mdast node.
|
||
|
* @returns {Element}
|
||
|
* hast node.
|
||
|
*/
|
||
|
export function emphasis(state: State, node: Emphasis): Element
|
||
|
export type Element = import('hast').Element
|
||
|
export type Emphasis = import('mdast').Emphasis
|
||
|
export type State = import('../state.js').State
|