File size: 410 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
/**
* 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
|