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