mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 04:39:31 +08:00
15 lines
315 B
Text
15 lines
315 B
Text
/**
|
|
* @type {Handle}
|
|
* @param {HTML} node
|
|
*/
|
|
export function html(node: HTML): string;
|
|
export namespace html {
|
|
export { htmlPeek as peek };
|
|
}
|
|
export type HTML = import('mdast').HTML;
|
|
export type Handle = import('../types.js').Handle;
|
|
/**
|
|
* @type {Handle}
|
|
*/
|
|
declare function htmlPeek(): string;
|
|
export {};
|