astro-ghostcms/.pnpm-store/v3/files/18/5d5b99e8a89d0f78d6cee488615...

17 lines
604 B
Plaintext

/**
* Turn an mdast `imageReference` node into hast.
*
* @param {State} state
* Info passed around.
* @param {ImageReference} node
* mdast node.
* @returns {Array<ElementContent> | ElementContent}
* hast node.
*/
export function imageReference(state: State, node: ImageReference): Array<ElementContent> | ElementContent;
export type Element = import('hast').Element;
export type ElementContent = import('hast').ElementContent;
export type Properties = import('hast').Properties;
export type ImageReference = import('mdast').ImageReference;
export type State = import('../state.js').State;