mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 21:59:29 +08:00
12 lines
344 B
Text
12 lines
344 B
Text
/**
|
|
* Tokenize subcontent.
|
|
*
|
|
* @param {Event[]} events
|
|
* @returns {boolean}
|
|
*/
|
|
export function subtokenize(
|
|
events: import('micromark-util-types').Event[]
|
|
): boolean
|
|
export type Token = import('micromark-util-types').Token
|
|
export type Chunk = import('micromark-util-types').Chunk
|
|
export type Event = import('micromark-util-types').Event
|