mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-10 05:48:15 +08:00
15 lines
298 B
TypeScript
15 lines
298 B
TypeScript
|
/**
|
||
|
* @param {Html} node
|
||
|
* @returns {string}
|
||
|
*/
|
||
|
export function html(node: Html): string;
|
||
|
export namespace html {
|
||
|
export { htmlPeek as peek };
|
||
|
}
|
||
|
import type { Html } from 'mdast';
|
||
|
/**
|
||
|
* @returns {string}
|
||
|
*/
|
||
|
declare function htmlPeek(): string;
|
||
|
export {};
|
||
|
//# sourceMappingURL=html.d.ts.map
|