14 lines
310 B
TypeScript
14 lines
310 B
TypeScript
/**
|
|
* @import {Nodes, Parents} from 'hast'
|
|
*/
|
|
/**
|
|
* Get the plain-text value of a hast node.
|
|
*
|
|
* @param {Nodes} node
|
|
* Node to serialize.
|
|
* @returns {string}
|
|
* Serialized node.
|
|
*/
|
|
export function toString(node: Nodes): string;
|
|
import type { Nodes } from 'hast';
|
|
//# sourceMappingURL=index.d.ts.map
|