site/node_modules/mdast-util-to-markdown/lib/handle/image.d.ts

21 lines
551 B
TypeScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
/**
* @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 {};