blockquote.d.ts 726 B

1234567891011121314151617181920
  1. /**
  2. * @typedef {import('mdast').Blockquote} Blockquote
  3. * @typedef {import('mdast').Parents} Parents
  4. * @typedef {import('../types.js').Info} Info
  5. * @typedef {import('../types.js').Map} Map
  6. * @typedef {import('../types.js').State} State
  7. */
  8. /**
  9. * @param {Blockquote} node
  10. * @param {Parents | undefined} _
  11. * @param {State} state
  12. * @param {Info} info
  13. * @returns {string}
  14. */
  15. export function blockquote(node: Blockquote, _: Parents | undefined, state: State, info: Info): string;
  16. export type Blockquote = import('mdast').Blockquote;
  17. export type Parents = import('mdast').Parents;
  18. export type Info = import('../types.js').Info;
  19. export type Map = import('../types.js').Map;
  20. export type State = import('../types.js').State;