site/node_modules/hast-util-heading-rank/lib/index.d.ts
2024-10-14 08:09:33 +02:00

14 lines
355 B
TypeScript

/**
* @typedef {import('hast').Nodes} Nodes
*/
/**
* Get the rank (`1` to `6`) of headings (`h1` to `h6`).
*
* @param {Nodes} node
* Node to check.
* @returns {number | undefined}
* Rank of the heading or `undefined` if not a heading.
*/
export function headingRank(node: Nodes): number | undefined;
export type Nodes = import('hast').Nodes;