site/node_modules/mdast-util-to-markdown/lib/handle/image.d.ts
2024-10-14 08:09:33 +02:00

21 lines
551 B
TypeScript

/**
* @param {Image} node
* @param {Parents | undefined} _
* @param {State} state
* @param {Info} info
* @returns {string}
*/
export function image(node: Image, _: Parents | undefined, state: State, info: Info): string;
export namespace image {
export { imagePeek as peek };
}
export type Image = import('mdast').Image;
export type Parents = import('mdast').Parents;
export type Info = import('../types.js').Info;
export type State = import('../types.js').State;
/**
* @returns {string}
*/
declare function imagePeek(): string;
export {};