mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02:00
9 lines
254 B
TypeScript
9 lines
254 B
TypeScript
/**
|
|
* @param {Array<Event>} events
|
|
* @returns {Array<Event>}
|
|
*/
|
|
export function postprocess(
|
|
events: Array<import('micromark-util-types').Event>
|
|
): Array<import('micromark-util-types').Event>
|
|
export type Event = import('micromark-util-types').Event
|