8 lines
249 B
TypeScript
8 lines
249 B
TypeScript
/**
|
|
* @param {Heading} node
|
|
* @param {State} state
|
|
* @returns {boolean}
|
|
*/
|
|
export function formatHeadingAsSetext(node: Heading, state: State): boolean
|
|
export type Heading = import('mdast').Heading
|
|
export type State = import('../types.js').State
|