mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 17:09:30 +08:00
8 lines
264 B
Text
8 lines
264 B
Text
/**
|
|
* @param {Heading} node
|
|
* @param {Context} context
|
|
* @returns {boolean}
|
|
*/
|
|
export function formatHeadingAsSetext(node: Heading, context: Context): boolean;
|
|
export type Heading = import('mdast').Heading;
|
|
export type Context = import('../types.js').Context;
|