13 lines
412 B
TypeScript
13 lines
412 B
TypeScript
|
/**
|
||
|
* @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;
|