astro-ghostcms/.pnpm-store/v3/files/94/d253e871a98eb082ebe8b1f396a...

13 lines
407 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/**
* @param {Root} node
* @param {Parents | undefined} _
* @param {State} state
* @param {Info} info
* @returns {string}
*/
export function root(node: Root, _: Parents | undefined, state: State, info: Info): string;
export type Parents = import('mdast').Parents;
export type Root = import('mdast').Root;
export type Info = import('../types.js').Info;
export type State = import('../types.js').State;