Spaces:
No application file
No application file
File size: 373 Bytes
494fa67 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import { RegexEngine } from "@shikijs/types";
//#region src/engine-raw.d.ts
/**
* Raw JavaScript regex engine that only supports precompiled grammars.
*
* This further simplifies the engine by excluding the regex compilation step.
*
* Zero dependencies.
*/
declare function createJavaScriptRawEngine(): RegexEngine;
//#endregion
export { createJavaScriptRawEngine }; |