break.d.ts 412 B

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