mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 22:18: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
|