site/node_modules/mdast-util-to-markdown/lib/handle/html.d.ts

15 lines
270 B
TypeScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
/**
* @param {Html} node
* @returns {string}
*/
export function html(node: Html): string;
export namespace html {
export { htmlPeek as peek };
}
export type Html = import('mdast').Html;
/**
* @returns {string}
*/
declare function htmlPeek(): string;
export {};