123456789101112 |
- /**
- * @param {Heading} node
- * @param {Parents | undefined} _
- * @param {State} state
- * @param {Info} info
- * @returns {string}
- */
- export function heading(node: Heading, _: Parents | undefined, state: State, info: Info): string;
- export type Heading = import('mdast').Heading;
- export type Parents = import('mdast').Parents;
- export type Info = import('../types.js').Info;
- export type State = import('../types.js').State;
|