mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02:00
15 lines
270 B
TypeScript
15 lines
270 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 {};
|