site/node_modules/hast-util-to-html/lib/handle/index.d.ts

8 lines
366 B
TypeScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
/**
* @type {(node: Nodes, index: number | undefined, parent: Parents | undefined, state: State) => string}
*/
export const handle: (node: Nodes, index: number | undefined, parent: Parents | undefined, state: State) => string;
export type Nodes = import('hast').Nodes;
export type Parents = import('hast').Parents;
export type State = import('../index.js').State;