123456789101112 |
- /**
- * @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;
- export type List = import('mdast').List;
- export type Parents = import('mdast').Parents;
- export type Info = import('../types.js').Info;
- export type State = import('../types.js').State;
|