kjelsrud.dev/node_modules/mdast-util-to-markdown/lib/handle/html.d.ts
2023-07-19 21:31:30 +02:00

14 lines
261 B
TypeScript

/**
* @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 {}