parse.d.ts 364 B

12345678910
  1. /**
  2. * @param {ParseOptions | null | undefined} [options]
  3. * Configuration (optional).
  4. * @returns {ParseContext}
  5. * Parser.
  6. */
  7. export function parse(options?: ParseOptions | null | undefined): ParseContext;
  8. import type { ParseOptions } from 'micromark-util-types';
  9. import type { ParseContext } from 'micromark-util-types';
  10. //# sourceMappingURL=parse.d.ts.map