Files
skills-here-run-place/node_modules/@shikijs/engine-javascript/dist/engine-raw.d.mts
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

13 lines
332 B
TypeScript

import { RegexEngine } from '@shikijs/types';
/**
* 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;
export { createJavaScriptRawEngine };