astro-ghostcms/.pnpm-store/v3/files/cf/eaa1403ae2d0c3fc548ece322de...

13 lines
422 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/**
* @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;