compile.d.ts 547 B

12345678910111213141516
  1. /**
  2. * @param {CompileOptions | null | undefined} [options]
  3. * @returns {Compile}
  4. */
  5. export function compile(options?: CompileOptions | null | undefined): Compile;
  6. export type Media = {
  7. image?: boolean | undefined;
  8. labelId?: string | undefined;
  9. label?: string | undefined;
  10. referenceId?: string | undefined;
  11. destination?: string | undefined;
  12. title?: string | undefined;
  13. };
  14. import type { CompileOptions } from 'micromark-util-types';
  15. import type { Compile } from 'micromark-util-types';
  16. //# sourceMappingURL=compile.d.ts.map