14 lines
373 B
TypeScript
14 lines
373 B
TypeScript
/**
|
|
* @param {ThematicBreak} _
|
|
* @param {Parent | undefined} _1
|
|
* @param {State} state
|
|
* @returns {string}
|
|
*/
|
|
export function thematicBreak(
|
|
_: ThematicBreak,
|
|
_1: Parent | undefined,
|
|
state: State
|
|
): string
|
|
export type ThematicBreak = import('mdast').ThematicBreak
|
|
export type Parent = import('../types.js').Parent
|
|
export type State = import('../types.js').State
|