index.d.ts 356 B

123456789101112
  1. /**
  2. * Tokenize subcontent.
  3. *
  4. * @param {Array<Event>} eventsArray
  5. * List of events.
  6. * @returns {boolean}
  7. * Whether subtokens were found.
  8. */
  9. export function subtokenize(eventsArray: Array<Event>): boolean;
  10. export { SpliceBuffer } from "./lib/splice-buffer.js";
  11. import type { Event } from 'micromark-util-types';
  12. //# sourceMappingURL=index.d.ts.map