mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-14 20:24:56 +02:00
14 lines
388 B
TypeScript
14 lines
388 B
TypeScript
/**
|
|
* Handle an MDX ESM node.
|
|
*
|
|
* @param {MdxjsEsm} node
|
|
* hast node to transform.
|
|
* @param {State} state
|
|
* Info passed around about the current state.
|
|
* @returns {undefined}
|
|
* Nothing.
|
|
*/
|
|
export function mdxjsEsm(node: MdxjsEsm, state: State): undefined;
|
|
export type MdxjsEsm = import('mdast-util-mdxjs-esm').MdxjsEsmHast;
|
|
export type State = import('../state.js').State;
|