mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 18:48:14 +08:00
10 lines
364 B
TypeScript
10 lines
364 B
TypeScript
|
/**
|
||
|
* @param {ParseOptions | null | undefined} [options]
|
||
|
* Configuration (optional).
|
||
|
* @returns {ParseContext}
|
||
|
* Parser.
|
||
|
*/
|
||
|
export function parse(options?: ParseOptions | null | undefined): ParseContext;
|
||
|
import type { ParseOptions } from 'micromark-util-types';
|
||
|
import type { ParseContext } from 'micromark-util-types';
|
||
|
//# sourceMappingURL=parse.d.ts.map
|