astro-ghostcms/.pnpm-store/v3/files/7c/c0c9579679bc22416e94035ea73...

8 lines
366 B
Plaintext

/**
* @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;