index.d.ts 580 B

12345678910111213141516
  1. export function micromark(
  2. value: Value,
  3. encoding: Encoding | null | undefined,
  4. options?: Options | null | undefined
  5. ): string
  6. export function micromark(
  7. value: Value,
  8. options?: Options | null | undefined
  9. ): string
  10. export {compile} from './lib/compile.js'
  11. export {parse} from './lib/parse.js'
  12. export {postprocess} from './lib/postprocess.js'
  13. export {preprocess} from './lib/preprocess.js'
  14. export type Encoding = import('micromark-util-types').Encoding
  15. export type Options = import('micromark-util-types').Options
  16. export type Value = import('micromark-util-types').Value