parse.d.ts 543 B

1234567891011
  1. /**
  2. * @param {ParseOptions | null | undefined} [options]
  3. * @returns {ParseContext}
  4. */
  5. export function parse(options?: ParseOptions | null | undefined): ParseContext
  6. export type Create = import('micromark-util-types').Create
  7. export type FullNormalizedExtension =
  8. import('micromark-util-types').FullNormalizedExtension
  9. export type InitialConstruct = import('micromark-util-types').InitialConstruct
  10. export type ParseContext = import('micromark-util-types').ParseContext
  11. export type ParseOptions = import('micromark-util-types').ParseOptions