mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 04:38:15 +08:00
17 lines
568 B
TypeScript
17 lines
568 B
TypeScript
|
/**
|
||
|
* @import {Info, State} from 'mdast-util-to-markdown'
|
||
|
* @import {Paragraph, Parents} from 'mdast'
|
||
|
*/
|
||
|
/**
|
||
|
* @param {Paragraph} node
|
||
|
* @param {Parents | undefined} _
|
||
|
* @param {State} state
|
||
|
* @param {Info} info
|
||
|
* @returns {string}
|
||
|
*/
|
||
|
export function paragraph(node: Paragraph, _: Parents | undefined, state: State, info: Info): string;
|
||
|
import type { Paragraph } from 'mdast';
|
||
|
import type { Parents } from 'mdast';
|
||
|
import type { State } from 'mdast-util-to-markdown';
|
||
|
import type { Info } from 'mdast-util-to-markdown';
|
||
|
//# sourceMappingURL=paragraph.d.ts.map
|