mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 01:54:29 +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
|