kjelsrud.dev/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.d.ts

15 lines
373 B
TypeScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
/**
* @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