thematic-break.d.ts 367 B

12345678910
  1. /**
  2. * @param {ThematicBreak} _
  3. * @param {Parents | undefined} _1
  4. * @param {State} state
  5. * @returns {string}
  6. */
  7. export function thematicBreak(_: ThematicBreak, _1: Parents | undefined, state: State): string;
  8. export type Parents = import('mdast').Parents;
  9. export type ThematicBreak = import('mdast').ThematicBreak;
  10. export type State = import('../types.js').State;