astro-ghostcms/.pnpm-store/v3/files/f0/db494460ae20b8daf55e4ae0573...

15 lines
406 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/**
* Turn an mdast `blockquote` node into hast.
*
* @param {State} state
* Info passed around.
* @param {Blockquote} node
* mdast node.
* @returns {Element}
* hast node.
*/
export function blockquote(state: State, node: Blockquote): Element;
export type Element = import('hast').Element;
export type Blockquote = import('mdast').Blockquote;
export type State = import('../state.js').State;