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

13 lines
412 B
TypeScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
/**
* @param {Break} _
* @param {Parents | undefined} _1
* @param {State} state
* @param {Info} info
* @returns {string}
*/
export function hardBreak(_: Break, _1: Parents | undefined, state: State, info: Info): string;
export type Break = import('mdast').Break;
export type Parents = import('mdast').Parents;
export type Info = import('../types.js').Info;
export type State = import('../types.js').State;