mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-14 20:24:56 +02:00
28 lines
813 B
TypeScript
28 lines
813 B
TypeScript
export namespace handlers {
|
|
export { comment };
|
|
export { ignore as doctype };
|
|
export { element };
|
|
export { mdxExpression as mdxFlowExpression };
|
|
export { mdxJsxElement as mdxJsxFlowElement };
|
|
export { mdxJsxElement as mdxJsxTextElement };
|
|
export { mdxExpression as mdxTextExpression };
|
|
export { mdxjsEsm };
|
|
export { root };
|
|
export { text };
|
|
}
|
|
import { comment } from './comment.js';
|
|
/**
|
|
* Handle a node that is ignored.
|
|
*
|
|
* @returns {undefined}
|
|
* Nothing.
|
|
*/
|
|
declare function ignore(): undefined;
|
|
import { element } from './element.js';
|
|
import { mdxExpression } from './mdx-expression.js';
|
|
import { mdxJsxElement } from './mdx-jsx-element.js';
|
|
import { mdxjsEsm } from './mdxjs-esm.js';
|
|
import { root } from './root.js';
|
|
import { text } from './text.js';
|
|
export {};
|