IOweb/node_modules/@shikijs/engine-javascript/dist/engine-raw.d.mts
2026-07-03 15:07:38 -05:00

13 lines
No EOL
373 B
TypeScript

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 };