image-reference.d.ts 652 B

123456789101112131415161718192021
  1. /**
  2. * @param {ImageReference} node
  3. * @param {Parents | undefined} _
  4. * @param {State} state
  5. * @param {Info} info
  6. * @returns {string}
  7. */
  8. export function imageReference(node: ImageReference, _: Parents | undefined, state: State, info: Info): string;
  9. export namespace imageReference {
  10. export { imageReferencePeek as peek };
  11. }
  12. import type { ImageReference } from 'mdast';
  13. import type { Parents } from 'mdast';
  14. import type { State } from 'mdast-util-to-markdown';
  15. import type { Info } from 'mdast-util-to-markdown';
  16. /**
  17. * @returns {string}
  18. */
  19. declare function imageReferencePeek(): string;
  20. export {};
  21. //# sourceMappingURL=image-reference.d.ts.map