site/node_modules/micromark-util-subtokenize/index.d.ts

15 lines
410 B
TypeScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
/**
* Tokenize subcontent.
*
* @param {Array<Event>} events
* List of events.
* @returns {boolean}
* Whether subtokens were found.
*/
export function subtokenize(
events: Array<import('micromark-util-types').Event>
): boolean
export type Chunk = import('micromark-util-types').Chunk
export type Event = import('micromark-util-types').Event
export type Token = import('micromark-util-types').Token