mirror of
https://github.com/sern-handler/website
synced 2026-06-23 16:22:26 +00:00
14 lines
510 B
TypeScript
14 lines
510 B
TypeScript
/**
|
|
* Tokenize subcontent.
|
|
*
|
|
* @param {Array<Event>} eventsArray
|
|
* List of events.
|
|
* @returns {boolean}
|
|
* Whether subtokens were found.
|
|
*/
|
|
export function subtokenize(eventsArray: Array<import("micromark-util-types").Event>): boolean;
|
|
export { SpliceBuffer } from "./lib/splice-buffer.js";
|
|
export type Chunk = import('micromark-util-types').Chunk;
|
|
export type Event = import('micromark-util-types').Event;
|
|
export type Token = import('micromark-util-types').Token;
|
|
//# sourceMappingURL=index.d.ts.map
|