mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 07:23:38 +08:00
13 lines
466 B
TypeScript
13 lines
466 B
TypeScript
/**
|
|
* @param {ListItem} node
|
|
* @param {Parents | undefined} parent
|
|
* @param {State} state
|
|
* @param {Info} info
|
|
* @returns {string}
|
|
*/
|
|
export function listItem(node: ListItem, parent: Parents | undefined, state: State, info: Info): string;
|
|
import type { ListItem } from 'mdast';
|
|
import type { Parents } from 'mdast';
|
|
import type { State } from 'mdast-util-to-markdown';
|
|
import type { Info } from 'mdast-util-to-markdown';
|
|
//# sourceMappingURL=list-item.d.ts.map
|