mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 04:38:15 +08:00
13 lines
445 B
TypeScript
13 lines
445 B
TypeScript
|
/**
|
||
|
* @param {List} node
|
||
|
* @param {Parents | undefined} parent
|
||
|
* @param {State} state
|
||
|
* @param {Info} info
|
||
|
* @returns {string}
|
||
|
*/
|
||
|
export function list(node: List, parent: Parents | undefined, state: State, info: Info): string;
|
||
|
import type { List } 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.d.ts.map
|