Urara-Blog/node_modules/.pnpm-store/v3/files/40/543455b32e690199476eb7ad5c4dde9e2f0251d32ae5b2a3826d1e53407563762d9b938debc9198ffbb2746f57f7dab6be9e493487496ea555b54861963857
2022-08-14 01:14:53 +08:00

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 {};