preprocess.d.ts 464 B

12345678910111213
  1. /**
  2. * @returns {Preprocessor}
  3. * Preprocess a value.
  4. */
  5. export function preprocess(): Preprocessor;
  6. /**
  7. * Preprocess a value.
  8. */
  9. export type Preprocessor = (value: Value, encoding?: Encoding | null | undefined, end?: boolean | null | undefined) => Array<Chunk>;
  10. import type { Value } from 'micromark-util-types';
  11. import type { Encoding } from 'micromark-util-types';
  12. import type { Chunk } from 'micromark-util-types';
  13. //# sourceMappingURL=preprocess.d.ts.map